View Single Post
Old 10-14-2002, 07:34 PM   PM User | #7
beetle
Senior Coder

 
Join Date: Aug 2002
Posts: 3,467
Thanks: 0
Thanked 0 Times in 0 Posts
beetle has a little shameless behaviour in the past
To the contrary, IE DOES create some empty text nodes...

Ever try placing what should be two, horizontally adjacent images into the HTML?
Code:
<img src="pic1.jpg">
<img src="pic2.jpg">
IE renders a space between the two this way. You have to do this:
Code:
<img src="pic1.jpg"><img src="pic2.jpg">
To elminate the space...
In short, IE makes them too...just not nearly as many as Gecko.

P.S. I have my own whitespace cleaner that I made a bit ago (very similar, but then, wouldn't it be?)...I've used it quite extensively and even on large HTML pages I've never seen it take longer than .5 secs. (AMD 650Mhz) I think even in today's broadband plentiful internet world, most people are patient enough for that.
__________________
My Site | fValidate | My Brainbench | MSDN | Gecko | xBrowser DOM | PHP | Ars | PVP
“Minds are like parachutes. They don't work unless they are open”
“Maturity is simply knowing when to not be immature”

Last edited by beetle; 10-14-2002 at 07:37 PM..
beetle is offline   Reply With Quote