Mozilla's rendering of slightly buggy HTML

2001-08-04 Thread Dave Huang
Seems to me that Mozilla can be a bit too picky about HTML... in particular, see http://www.azeotrope.org/~khym/moztest.html It's a bunch of lines like: something something else etc... There are 200 lines like that, but Mozilla only shows the first 196. If I fix it so that the tag is properly cl

Re: Mozilla's rendering of slightly buggy HTML

2001-08-04 Thread Clarence (Andreas M. Schneider)
Dave Huang wrote: > > Seems to me that Mozilla can be a bit too picky about HTML... in > particular, see http://www.azeotrope.org/~khym/moztest.html > It's a bunch of lines like: > something > something else > etc... > > There are 200 lines like that, but Mozilla only shows the first 196. If > I

Re: Mozilla's rendering of slightly buggy HTML

2001-08-04 Thread Christopher Jahn
And it came to pass that Dave Huang wrote: > Seems to me that Mozilla can be a bit too picky about > HTML... in particular, see > http://www.azeotrope.org/~khym/moztest.html It's a bunch of > lines like: >something something else >etc... > > There are 200 lines like that, but Mozilla only show

Re: Mozilla's rendering of slightly buggy HTML

2001-08-04 Thread Dave Huang
In article <[EMAIL PROTECTED]>, Christopher Jahn <[EMAIL PROTECTED]> wrote: >So what you're saying is that since you're too lazy to write >good code, Mozilla should have many more lines of code to >overcome your laziness? No, that's not what I'm saying. Sorry that you're not bright enough to u

Re: Mozilla's rendering of slightly buggy HTML

2001-08-04 Thread Mark
Christopher Jahn wrote: > So what you're saying is that since you're too lazy to write > good code, Mozilla should have many more lines of code to > overcome your laziness? In my opinion, Opera is a good example of a browser that's almost totally unforgiving with regard to html errors or slop

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Dave Huang
In article <[EMAIL PROTECTED]>, Clarence (Andreas M. Schneider) <[EMAIL PROTECTED]> wrote: >AIUI HTML 4 limits the nesting level of tags to 100, >Mozilla handles up to 200 (but only 75 for Mac). > >http://lxr.mozilla.org/seamonkey/source/htmlparser/src/CNavDTD.cpp#1339 Ah, thanks for the pointer.

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread David Gerard
On Sun, 05 Aug 2001 02:06:55 -0400, Mark <[EMAIL PROTECTED]> wrote: :Christopher Jahn wrote: :> So what you're saying is that since you're too lazy to write :> good code, Mozilla should have many more lines of code to :> overcome your laziness? :In my opinion, Opera is a good example of a brow

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Jason Bassford
> There are 200 lines like that, but Mozilla only shows the first 196. If > I fix it so that the tag is properly closed (or get rid of the > tag), everything works fine. What would be nice, would be if somebody could clearly answer your question - rather than making disparaging comments: 1.

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Henri Sivonen
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Jason Bassford) wrote: > 1. What part of the coding has Mozilla stop at 196 (Confirmed?) lines? There is a nesting limit in the parser. > What's the reasoning for this particular number? Someone figured that allowing deeper nesting would mak

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Dave Huang
In article <[EMAIL PROTECTED]>, Henri Sivonen <[EMAIL PROTECTED]> wrote: >(XML is another story.) OTOH, increasing the stack limit to allow even >more broken pages is most likely not worth the effort. Authors should >just fix their HTML. They should, but like it or not, most people use IE as t

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Matthew Cruickshank
>So what you're saying is that since you're too lazy to write >good code, Mozilla should have many more lines of code to >overcome your laziness? People don't just browse their own websites.

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Christopher Jahn
And it came to pass that Dave Huang wrote: > In article > <[EMAIL PROTECTED]>, Henri > Sivonen <[EMAIL PROTECTED]> wrote: >>(XML is another story.) OTOH, increasing the stack limit to >>allow even more broken pages is most likely not worth the >>effort. Authors should just fix their HTML. > >

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Christopher Jahn
And it came to pass that Matthew Cruickshank wrote: >>So what you're saying is that since you're too lazy to write >>good code, Mozilla should have many more lines of code to >>overcome your laziness? > > People don't just browse their own websites. > > When you lower the standards, the sta

Re: Mozilla's rendering of slightly buggy HTML

2001-08-05 Thread Dave Huang
In article <[EMAIL PROTECTED]>, Christopher Jahn <[EMAIL PROTECTED]> wrote: >And it came to pass that Dave Huang wrote: >> They should, but like it or not, most people use IE as their >> HTML validator-- > >Sloppy. They should use a validator, not a browser. They should, but like it or not, mos

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Matthew Cruickshank
>IOW, if you design a browser to accomodate a 20% error rate, >designers will allow pages to pass with 25% bad code. If you >change to 25%, the designers will allow 30%. It's a negative >feedback loop. I can't think of any reason why not closing 100 tags would be of benefit to anyone (well,

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread David Gerard
On 5 Aug 2001 20:50:08 GMT, Dave Huang <[EMAIL PROTECTED]> wrote: :In article <[EMAIL PROTECTED]>, :Henri Sivonen <[EMAIL PROTECTED]> wrote: :>(XML is another story.) OTOH, increasing the stack limit to allow even :>more broken pages is most likely not worth the effort. Authors should :>just f

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Jason Bassford
> Someone figured that allowing deeper nesting would make a stack overflow > somewhere. (It has happened. That's why the limit was put in.) So it shows as much as it can without crashing. An excellent explanation. I can't recall now - wasn't there some discussion about showing a tray ico

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread David Gerard
On 6 Aug 2001 06:10:09 -0700, Jason Bassford <[EMAIL PROTECTED]> wrote: :> Someone figured that allowing deeper nesting would make a stack overflow :> somewhere. (It has happened. That's why the limit was put in.) : So it shows as much as it can without crashing. An excellent :explanation. :

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Christopher Jahn
And it came to pass that Dave Huang wrote: > In article <[EMAIL PROTECTED]>, > Christopher Jahn <[EMAIL PROTECTED]> wrote: >>And it came to pass that Dave Huang wrote: >>> They should, but like it or not, most people use IE as >>> their HTML validator-- >> >>Sloppy. They should use a validator,

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Chuck Simmons
Matthew Cruickshank wrote: > > >IOW, if you design a browser to accomodate a 20% error rate, > >designers will allow pages to pass with 25% bad code. If you > >change to 25%, the designers will allow 30%. It's a negative > >feedback loop. > > I can't think of any reason why not closing 100 tag

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Scott I. Remick
In article <9klctj$[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > They should, but like it or not, most people use IE as their HTML validator. This does not make such behavior right, nor should we try and "solve" the problem by encouraging people to continue down the path of such behavior. I

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Scott I. Remick
In article <9kic92$[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > I'm guessing all the unclosed s are causing some stack to fill, and > Mozilla gives up rendering the rest of the page? Anyways, I think it'd be > nice if Mozilla could handle this, although I have no idea how hard it'd > be to do.

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Matthew Cruickshank
>That is an interestingly broad statement. Do I understand that there are >no high level language compilers or interpreters that you can recommend? Let me break down my broad statement into two groups. When the code's intent is unambiguous I fully expect any software to cope. When the code's inte

Re: Mozilla's rendering of slightly buggy HTML

2001-08-06 Thread Matthew Cruickshank
>It's not too much to demand that people write proper code. OK, what about these situations: a) Webdesigner views their own site but doesn't know how to fix it. b) Webdesigner views anothers' broken site and is unable to use it but notifies the owner. Website owner doesn't respond. c) Computer i

Re: Mozilla's rendering of slightly buggy HTML

2001-08-07 Thread A Martinez
Matthew Cruickshank wrote: > > a) Webdesigner views their own site but doesn't know how to fix it. Then he can't call himself a Webdesigner. Everybody can throw out bad HTML code, a real Webdesigner knows what he is doing and when he finds an error knows how to fix it, or at least he can then

Re: Mozilla's rendering of slightly buggy HTML

2001-08-07 Thread jesus X
Matthew Cruickshank wrote: > > It's not too much to demand that people write proper code. > OK, what about these situations: > a) Webdesigner views their own site but doesn't know how to fix it. Then he's not a web designer. That's like saying a mechanic can't change his own spark plugs. > b) We

Re: Mozilla's rendering of slightly buggy HTML

2001-08-08 Thread Dave Huang
In article <[EMAIL PROTECTED]>, Scott I. Remick <[EMAIL PROTECTED]> wrote: >Instead, the problem should be addressed in the obvious way: educate >people that IE is not standards-compliant and has no place as a litmus >test for valid code. Okay, well let me know when you're done with your reedu

Re: Mozilla's rendering of slightly buggy HTML

2001-08-08 Thread Dave Huang
In article <[EMAIL PROTECTED]>, Scott I. Remick <[EMAIL PROTECTED]> wrote: >Adding additional bloat to a browser to try and interpret bad code is >not the right way to address the problem. Sure, in this case it might >seem like a simple fix. Missing closing tags. So say Mozilla adds code >f

Re: Mozilla's rendering of slightly buggy HTML

2001-08-10 Thread Josh Soref
David Gerard wrote: > http://bugzilla.mozilla.org/show_bug.cgi?id=72935 note that this is not a browser bug, it's a webtools bug, specifically for mozbot. but thanks for the links :-)