Prev: Kerning and ligatures
Next: using Avant Garde font
From: GTalbot on 11 Sep 2009 13:19 On 11 sep, 10:18, Andreas Prilop <prilop4...(a)trashmail.net> wrote: > >http://web.archive.org/web/20080210175201/http://www.unics.uni-hannov... > > http://www.user.uni-hannover.de/nhtcapri/ie7-bugs.html Andreas, I have updated your webpage using http://www.user.uni-hannover.de/nhtcapri/ie7-bugs.html and uploaded modified pages. Thank you! best regards, Gérard -- Internet Explorer 8 bugs: 56 bugs so far http://www.gtalbot.org/BrowserBugsSection/MSIE8Bugs/ Internet Explorer 7 bugs: 182 bugs so far http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/
From: Garrett Smith on 19 Sep 2009 16:47 GTalbot wrote: > On 8 sep, 18:31, dorayme <doraymeRidT...(a)optusnet.com.au> wrote: > > >> I'd be surprised if even IE saw <div class="clear"><!-- --></div> as >> different to <div class="clear"></div>. > > > IE 7, at least, considers, treats SGML comment differently. It does > really treat > <div class="clear"><!-- --></div> > as different to > <div class="clear"></div> > > Adjacent sibling selector and comment bug in Internet Explorer 7 and > Internet Explorer 8 beta 1. > http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/#bug165 Internet Explorer, up to and including version 8, has always treated comments as Elements. http://msdn.microsoft.com/en-us/library/ms535229%28VS.85%29.aspx > and > http://web.archive.org/web/20080210175201/http://www.unics.uni-hannover.de/nhtcapri/ie7-bugs > from Andreas Prilop > > but there are also another bunch of cases where IE 6, IE 7 and even IE > 8 treats SGML comments differently. > I have a vague recollection of comment in list affecting the position of the LI. -- Garrett comp.lang.javascript FAQ: http://jibbering.com/faq/
From: GTalbot on 21 Sep 2009 16:15
On 19 sep, 16:47, Garrett Smith <dhtmlkitc...(a)gmail.com> wrote: > GTalbot wrote: > > On 8 sep, 18:31, dorayme <doraymeRidT...(a)optusnet.com.au> wrote: > > >> I'd be surprised if even IE saw <div class="clear"><!-- --></div> as > >> different to <div class="clear"></div>. > > > IE 7, at least, considers, treats SGML comment differently. It does > > really treat > > <div class="clear"><!-- --></div> > > as different to > > <div class="clear"></div> > > > Adjacent sibling selector and comment bug in Internet Explorer 7 and > > Internet Explorer 8 beta 1. > >http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/#bug165 > > Internet Explorer, up to and including version 8, has always treated > comments as Elements. > > http://msdn.microsoft.com/en-us/library/ms535229%28VS.85%29.aspx > Yes. Comments (IE extension) like <comment>Hello world</comment> But <!-- SGML comment --> is http://msdn.microsoft.com/en-us/library/ms535256%28VS.85%29.aspx > > and > >http://web.archive.org/web/20080210175201/http://www.unics.uni-hannov... > > from Andreas Prilop > > > but there are also another bunch of cases where IE 6, IE 7 and even IE > > 8 treats SGML comments differently. > > I have a vague recollection of comment in list affecting the position of > the LI. Not that I know of. Bug 362106: An HTML comment is counted as an adjacent sibling node (fixed) https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=362106 Bug 334330: tagName of a comment node is wrong (bug report still active) https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=334330 There's also bugs 354956 and 382800 where comment cause problems; also bug 339307: DOM nodeType constant values are not enumerable, are not accessible https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=339307. nodeType constant value: const unsigned short COMMENT_NODE = 8; So querying a comment's nodeType value should return 8. http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1950641247 regards, Gérard -- Internet Explorer 8 bugs: 57 bugs so far http://www.gtalbot.org/BrowserBugsSection/MSIE8Bugs/ Internet Explorer 7 bugs: 182 bugs so far http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/ |