Changeset 21646 in webkit
- Timestamp:
- May 22, 2007, 3:59:02 PM (18 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r21642 r21646 1 2007-05-22 Darin Adler <darin@apple.com> 2 3 Reviewed by Tim Hatcher. 4 5 - fix <rdar://problem/5206089> REGRESSION: hovering over amazon.com "product categories" 6 tab makes page content disappear 7 8 The contentWindow property was doing a cross-frame security check, but it shouldn't. 9 Window objects are responsible for protecting themselves from cross-frame activity. 10 Because contentWindow returned undefined, we then ended up setting visibility on the 11 body of the main frame to "hidden". 12 13 No layout test yet. When we make cross-domain tests, we should include this one. 14 15 * html/HTMLFrameElement.idl: Removed CheckFrameSecurity attribute from contentWindow. 16 * html/HTMLIFrameElement.idl: Ditto. 17 1 18 2007-05-22 Justin Garcia <justin.garcia@apple.com> 2 19 -
trunk/WebCore/html/HTMLFrameElement.idl
r21624 r21646 38 38 #if defined(LANGUAGE_JAVASCRIPT) 39 39 // FIXME: this need not be JS only. See http://bugs.webkit.org/show_bug.cgi?id=13798 40 readonly attribute [CheckFrameSecurity] WindowcontentWindow;40 readonly attribute Window contentWindow; 41 41 #endif 42 42 -
trunk/WebCore/html/HTMLIFrameElement.idl
r21624 r21646 40 40 #if defined(LANGUAGE_JAVASCRIPT) 41 41 // FIXME: this need not be JS only. See http://bugs.webkit.org/show_bug.cgi?id=13798 42 readonly attribute [CheckFrameSecurity] WindowcontentWindow;42 readonly attribute Window contentWindow; 43 43 #endif 44 44
Note:
See TracChangeset
for help on using the changeset viewer.