WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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
Add attachment
proposed patch, testcase, etc.
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
<
rdar://problem/4209402
>
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.
Top of Page
Format For Printing
XML
Clone This Bug