RESOLVED WORKSFORME 19096
interpark.co.kr : layout completely broken
https://bugs.webkit.org/show_bug.cgi?id=19096
Summary interpark.co.kr : layout completely broken
Jungshik Shin
Reported 2008-05-15 18:02:21 PDT
Go to the url above and find that the layout is broken. It's likely to be an evangelism issue. Only IE can render the page as intended. Interpark.com is a Korean amazon.com
Attachments
Jungshik Shin
Comment 1 2008-05-15 18:50:53 PDT
Below is a JS snippet. It relies on document.all to do different things for IE (document.all) and Netscape 4.x (document.layers) !! Their clock must have stopped in 1998. Sigh ! A random idea : Can we introduce a limited support for 10-yr old non-standard document.layers in a quirk mode? ---------------------------- if (document.all) { layerRef='document.all' styleRef='.style.' } else if (document.layers) { layerRef='document.layers' styleRef='.' } // show DIV function showLayer(lname) { eval(layerRef+'["'+lname+'"]'+styleRef+'display="block"'); } // hide DIV function hideLayer(lname) { eval(layerRef+'["'+lname+'"]'+styleRef+'display="none"'); } ----------------------------
Deirdre Saoirse Moen
Comment 2 2008-05-15 20:49:43 PDT
Jungshik Shin
Comment 3 2011-05-13 11:09:35 PDT
Apparently, the site has been revised to work better with modern browsers. The layout is not broken any more. There's one 'behavior' issue that does not seem quite right, but I have to try the site with (an old version of) MSIE and see what their intent was.
Note You need to log in before you can comment on or make changes to this bug.