I never thought that I’d be directly hit by an IE bug. However, it happened today. This page:
http://www.hex-rays.com/compare.shtml
does not render correctly in IE7. I tried everything, got rid of all validator complaints, rearranged the code, played with the css file, and finally checked the IE bug collections.
Okay, I give up.
Where should I submit the bug or seek help?
Team
- Ilfak Guilfanov
- Elias Bachaalany
- Igor Skochinsky
- Daniel Pistelli
The IDA Pro Book (2nd Ed)
-
Recent Posts
Recent Comments
- Joxean on The trace replayer
- Jonas on The trace replayer
- Darmawan on Recon 2012: Compiler Internals
- Joxean on The trace replayer
- Xing on The trace replayer
Categories
Archives
- May 2013
- April 2013
- June 2012
- April 2012
- January 2012
- October 2011
- September 2011
- August 2011
- July 2011
- May 2011
- April 2011
- February 2011
- January 2011
- December 2010
- October 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- February 2009
- January 2009
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- April 2008
- March 2008
- February 2008
- January 2008
- November 2007
- October 2007
- September 2007
- August 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- October 2006
- September 2006
- August 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005

Looks okay here. Nice examples, by the way! Does it detect all the “magic division” constants?
Seems to render just fine here, IE7, Windows XP. What exactly renders wrong on your machine?
Does it render correctly in some other browser?
In Firefox 2 on Linux it looks like you at least need some newlines in the disassembly.
Regards,
\David
It renders ok in all browsers except IE7. The result seems to be pretty random. Very often the first example renders correctly but the rest are garbled. It goes really bad at the end:
http://www.hexblog.com/ie7bug.png
I tested this on 3 different machines with IE7 and on 6-7 machines with other browsers.
Igor, yes it tries to detect all magic constants. I tested the first 1000 but did not go further.
generally if you get more simple, you avoid bugs. for example, you have span for all, even only to signal a text color.
you should use code, and font color=green instead of two span.
more generally again, screwing up all code, then trying to reinsert it slowly, you will find what goes wrong for ie7.
np for me linux firefox2.
The same problem is present in IE 6. It appears to only be present on the lines that start with the beginning of a span after the spaces. Try extending the previous span so that it ends on the new line, or use BR tags instead of 0D 0A.
Thanks to the patient help of Yin Xie from Microsoft the issue has been solved.
Hope I didn’t break anything in the process