My favorites | Sign in
Project Home Downloads Issues
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 126: IE6 with html standard mode problem.
1 person starred this issue and may be notified of changes. Back to list
Status:  WontFix
Owner:  ----
Closed:  Jan 2009


 
Reported by maeda...@gmail.com, Dec 2, 2008
I'm sorry. I have poor ability to write in English

What steps will reproduce the problem?
1. Unzip Attachment zip archive
2. Open standard_mode.html with IE6
3. Scroll bottom and click image. 

What is the expected output? What do you see instead?
See in Attachment the png file.
This problem is occured with IE6 and html is wrote by standard mode.

What version of the product are you using? On what operating system?
1.3.0, 1.3.1 under, IE6, Windows XP.

Please provide any additional information below.
See in Attachment the zip archive file. (just examples of what I try to do)

This code fix the problem. Base code is nyroModal 1.3.1.
{{{
503,504c503,509
<             currentSettings.marginScrollLeft =
document.documentElement.scrollLeft || document.body.scrollLeft;
<             currentSettings.marginScrollTop =
document.documentElement.scrollTop || document.body.scrollTop;
---
>                       if (document.documentElement) {
>                               currentSettings.marginScrollLeft =
document.documentElement.scrollLeft;
>                               currentSettings.marginScrollTop =
document.documentElement.scrollTop;
>                       } else {
>                               currentSettings.marginScrollLeft =
document.body.scrollLeft;
>                               currentSettings.marginScrollTop =
document.body.scrollTop;
>                       }
1371c1376
< }
---
> }
}}}

ie6_with_standard_mode_problem.png
28.8 KB   View   Download
ie6_with_standard_mode_bug.zip
188 KB   Download
Jan 27, 2009
Project Member #1 nyro...@gmail.com
After applying your code fix, I still see the problem in the quirks page.
Moreover in the 1.3 jQuery Release (http://docs.jquery.com/Release:jQuery_1.3) it says
"You should always be sure to run your page in standards mode. There are known issues
with methods not working correctly in quirks mode (including errors in the selector
engine in Safari)."
Status: WontFix

Powered by Google Project Hosting