RESOLVED FIXED 24170
Add test to verify window property lookup precedence
https://bugs.webkit.org/show_bug.cgi?id=24170
Summary Add test to verify window property lookup precedence
Pam Greene (IRC:pamg)
Reported 2009-02-25 13:36:29 PST
Add a test to verify that properties on DOMWindow objects are found before properties of the child frame, and that IDL properties defined in the prototype are found before named document elements. This tests an error that Chromium had at one point, which led to a site compatibility issue on www.multimap.com.
Attachments
New test, resource file, helper function, and result (42.63 KB, patch)
2009-02-25 13:51 PST, Pam Greene (IRC:pamg)
no flags
Same patch; added missing newline to end of window-properties.js. (42.61 KB, patch)
2009-02-25 13:54 PST, Pam Greene (IRC:pamg)
fishd: review+
Remove dependency on numerical values (4.82 KB, patch)
2009-03-16 12:37 PDT, Pam Greene (IRC:pamg)
no flags
remove unnecessary toLower (1.22 KB, patch)
2009-04-02 10:49 PDT, Pam Greene (IRC:pamg)
darin: review+
Pam Greene (IRC:pamg)
Comment 1 2009-02-25 13:51:01 PST
Created attachment 27980 [details] New test, resource file, helper function, and result Either there's something I don't understand about eval, or a trunk build currently fails some of these checks. window.defaultStatus, window.status, and window.name are modified when the subframe or input element changes: they go from undefined to '' (empty strings). It's still worth adding this test to detect other regressions.
Pam Greene (IRC:pamg)
Comment 2 2009-02-25 13:54:45 PST
Created attachment 27981 [details] Same patch; added missing newline to end of window-properties.js.
Darin Fisher (:fishd, Google)
Comment 3 2009-03-12 15:12:33 PDT
Comment on attachment 27981 [details] Same patch; added missing newline to end of window-properties.js. LGTM
Pam Greene (IRC:pamg)
Comment 4 2009-03-13 10:46:03 PDT
I made a small change to remove the dependency on the test file location for win['Location'], then landed as r41672.
Pam Greene (IRC:pamg)
Comment 5 2009-03-16 11:35:37 PDT
Test is failing because of differences in window size and location (outerHeight, outerWidth, screenTop, and screenX).
Pam Greene (IRC:pamg)
Comment 6 2009-03-16 12:37:37 PDT
Created attachment 28655 [details] Remove dependency on numerical values The exact values of these numbers are not pertinent to this test, only that they are unchanged.
Pam Greene (IRC:pamg)
Comment 7 2009-03-16 12:55:53 PDT
Fix reviewed by dglazkov on IRC, landed as r41736.
Darin Adler
Comment 8 2009-03-16 12:57:20 PDT
I'm surprised by the use of toLowerCase on the result of typeof. That string should reliably be the same constant across multiple JavaScript engines and there's no reason to call toLowerCase.
Alexey Proskuryakov
Comment 9 2009-03-19 01:40:46 PDT
Comment on attachment 28655 [details] Remove dependency on numerical values Clearing review flag, as this was landed already.
Pam Greene (IRC:pamg)
Comment 10 2009-04-02 10:49:00 PDT
Created attachment 29199 [details] remove unnecessary toLower
Darin Adler
Comment 11 2009-04-02 10:54:20 PDT
Comment on attachment 29199 [details] remove unnecessary toLower r=me
Pam Greene (IRC:pamg)
Comment 12 2009-04-02 11:19:09 PDT
Cleanup landed in r42176.
Note You need to log in before you can comment on or make changes to this bug.