9 replies [Last post]
Tony
Tony's picture
Offline
Moderator
Brisbane
Last seen: 1 week 3 hours ago
Brisbane
Timezone: GMT+10
Joined: 2003-03-12
Posts: 5344
Points: 2965

XHTML2 Working Group Expected to Stop Work End of 2009. XHTML1 will continue to be maintained as a specification.
See:XHTML FAQ

Seems like this is causing a lot of controversy around the web.
Zeldman in defense of web developers

Personally I like the XHTML syntax ( closing all elements ) and will continue to do so in HTML5.

Tyssen
Tyssen's picture
Offline
Moderator
Brisbane
Last seen: 8 years 24 weeks ago
Brisbane
Timezone: GMT+10
Joined: 2004-05-01
Posts: 8201
Points: 1386

Firefox 3.5 must be like me

Firefox 3.5 must be like me - doesn't like reading too many comments because it's cut off the page about halfway down the comments. :?

How to get help
Post a link. If you can't post a link, jsFiddle it.
My blog | My older articles | CSS Reference

Tony
Tony's picture
Offline
Moderator
Brisbane
Last seen: 1 week 3 hours ago
Brisbane
Timezone: GMT+10
Joined: 2003-03-12
Posts: 5344
Points: 2965

The page is getting pretty

The page is getting pretty long, maybe FF ran out of available memory

Hugo
Hugo's picture
Offline
Moderator
London
Last seen: 8 years 11 weeks ago
London
Joined: 2004-06-06
Posts: 15668
Points: 2806

Cuts of for me too, fine in

Cuts of for me too, fine in Opera! as I've said recently FF starts to worry me slightly in it's minor buggy behaviour.

I do love Zeldman he has the ability to speak plainly and not come across as an elitist developer, a group of people that imho don't really serve the working developer.

So we wait till 2022 for full implementation of html5 Smile

oh and last comment in that list was:


CSS Creator HTML 5 and XHTML confusion said on 8 July 2009 at 1:18 am:

[...] Seems like this is causing a lot of controversy around the web. Zeldman in defense of web developers [...]

Before you make your first post it is vital that you READ THE POSTING GUIDELINES!
----------------------------------------------------------------
Please post ALL your code - both CSS & HTML - in [code] tags
Please validate and ensure you have included a full Doctype before posting.
Why validate? Read Me

Tony
Tony's picture
Offline
Moderator
Brisbane
Last seen: 1 week 3 hours ago
Brisbane
Timezone: GMT+10
Joined: 2003-03-12
Posts: 5344
Points: 2965

Zeldman has tracked down the

Hugo
Hugo's picture
Offline
Moderator
London
Last seen: 8 years 11 weeks ago
London
Joined: 2004-06-06
Posts: 15668
Points: 2806

Ah that's an interesting

Ah that's an interesting read, shame it can't actually pinpoint what FF is falling over on , why after a certain page length it considers it's had enough and will take overflow:hidden literally.

One of the last comments probably had the best fix to prevent the flash of background and one I have to admit I would have tried; if the fix was to state overflow:visible rather than overflow:hidden then replacing both of those with the easyclearing clearfix technique should almost certainly cure the problem.

Again it worries me that FF is showing buggy behaviour. We know that there are, from time to time, bugs that require fixing, and that this has always been the case, but just recently I have been aware of a feeling that I hit issues far more frequently, and that when checked against other browsers said issue has not manifested, of course generally I have wasted too much time hunting for an issue in my work :rolleyes:

Before you make your first post it is vital that you READ THE POSTING GUIDELINES!
----------------------------------------------------------------
Please post ALL your code - both CSS & HTML - in [code] tags
Please validate and ensure you have included a full Doctype before posting.
Why validate? Read Me

gary.turner
gary.turner's picture
Offline
Moderator
Dallas
Last seen: 2 years 3 weeks ago
Dallas
Timezone: GMT-6
Joined: 2004-06-25
Posts: 9776
Points: 3858

It seems, if I read the

It seems, if I read the comments correctly, that it is a combination of some (bad?) choice made by a Moz programmer and the workings of the MSFT os. I saw a comment that the effect occurred at the 16,384th vertical pixel, which would imply 16 bit widgets. Not sure how that happens. A 16 bit bit of data gives ±32,768 values as a signed integer, and 65,536 unsigned. But what do I know? Back in the 8 bit cpu days, with 16 bit address lines, we would use 16kB memory boards (14 bit addy), with the top two lines/bits used to page up to four boards.

I could not duplicate the issue running in Linux. If a bug depends on the os, is it really a browser bug, or an os bug that Moz needs to accommodate?

cheers,

gary

If your web page is as clever as you can make it, it's probably too clever for you to debug or maintain.

Chris..S
Chris..S's picture
Offline
Moderator
Last seen: 10 years 27 weeks ago
Timezone: GMT+1
Joined: 2005-02-22
Posts: 6078
Points: 173

Bug occurs on Mac in both FF

Bug occurs on Mac in Camino but not FF3. If its the same one I know about its been around for ages and was supposed to be fixed in Gecko 1.9 - ie. FF3.

Internal values to the program aren't likely to be anything to do with the OS. Its sounds like Mozilla chose a 16 bit signed int. I can't imagine Windows is so bad that it would limit screen constructs to 15bits of pixels.

PS. Sorry, its not the same bug that afflicted Gecko 1.8. example. The page works in FF3 but not latest Camino. Its similar though, overflow:hidden on a very tall page. I'm too lazy to dig out the original bug report, but I recall it being triggered at a height of 32767px.

Hugo
Hugo's picture
Offline
Moderator
London
Last seen: 8 years 11 weeks ago
London
Joined: 2004-06-06
Posts: 15668
Points: 2806

Cripes you two have given me

Cripes you two have given me a headache with your 16 bits on int thingies. So still wondering if that comment suggesting that clearfix would cure issue holds true, certainly not going to test it though, far too lazy.

Before you make your first post it is vital that you READ THE POSTING GUIDELINES!
----------------------------------------------------------------
Please post ALL your code - both CSS & HTML - in [code] tags
Please validate and ensure you have included a full Doctype before posting.
Why validate? Read Me

Chris..S
Chris..S's picture
Offline
Moderator
Last seen: 10 years 27 weeks ago
Timezone: GMT+1
Joined: 2005-02-22
Posts: 6078
Points: 173

If you don't use

If you don't use overflow:hidden then the bug won't affect you (at least for the one I mentioned). What you use instead of overflow:hidden is, I guess, up to you. Smile