OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="resources/cross-frame-access.js"></script> | 3 <script src="resources/cross-frame-access.js"></script> |
4 <script> | 4 <script> |
5 var windowConstructorPropertiesNotAllowed = [ | 5 var windowConstructorPropertiesNotAllowed = [ |
6 "Attr", | 6 "Attr", |
7 "Audio", | 7 "Audio", |
8 "CDATASection", | 8 "CDATASection", |
9 "CSSPrimitiveValue", | 9 "CSSPrimitiveValue", |
10 "CSSRule", | 10 "CSSRule", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 "prompt", | 122 "prompt", |
123 "releaseEvents", | 123 "releaseEvents", |
124 "removeEventListener", | 124 "removeEventListener", |
125 "resizeBy", | 125 "resizeBy", |
126 "resizeTo", | 126 "resizeTo", |
127 "scroll", | 127 "scroll", |
128 "scrollBy", | 128 "scrollBy", |
129 "scrollTo", | 129 "scrollTo", |
130 "setInterval", | 130 "setInterval", |
131 "setTimeout", | 131 "setTimeout", |
132 "showModalDialog", | |
133 "stop", | 132 "stop", |
134 "blur", | 133 "blur", |
135 "close", | 134 "close", |
136 "focus" | 135 "focus" |
137 ]; | 136 ]; |
138 | 137 |
139 var windowAttributesPropertiesNotAllowed = [ | 138 var windowAttributesPropertiesNotAllowed = [ |
140 "clientInformation", | 139 "clientInformation", |
141 "console", | 140 "console", |
142 "crypto", | 141 "crypto", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 shouldThrowException("targetWindow.history"); | 286 shouldThrowException("targetWindow.history"); |
288 } | 287 } |
289 </script> | 288 </script> |
290 </head> | 289 </head> |
291 <body> | 290 <body> |
292 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt
ps://bugs.webkit.org/show_bug.cgi?id=32119).</p> | 291 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt
ps://bugs.webkit.org/show_bug.cgi?id=32119).</p> |
293 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get
-test.html" style=""></iframe> | 292 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get
-test.html" style=""></iframe> |
294 <pre id="console"></pre> | 293 <pre id="console"></pre> |
295 </body> | 294 </body> |
296 </html> | 295 </html> |
OLD | NEW |