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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "prompt", | 123 "prompt", |
124 "releaseEvents", | 124 "releaseEvents", |
125 "removeEventListener", | 125 "removeEventListener", |
126 "resizeBy", | 126 "resizeBy", |
127 "resizeTo", | 127 "resizeTo", |
128 "scroll", | 128 "scroll", |
129 "scrollBy", | 129 "scrollBy", |
130 "scrollTo", | 130 "scrollTo", |
131 "setInterval", | 131 "setInterval", |
132 "setTimeout", | 132 "setTimeout", |
133 "showModalDialog", | |
134 "stop" | 133 "stop" |
135 ]; | 134 ]; |
136 | 135 |
137 var windowAttributesPropertiesNotAllowed = [ | 136 var windowAttributesPropertiesNotAllowed = [ |
138 "clientInformation", | 137 "clientInformation", |
139 "console", | 138 "console", |
140 "crypto", | 139 "crypto", |
141 "defaultStatus", | 140 "defaultStatus", |
142 "defaultstatus", | 141 "defaultstatus", |
143 "devicePixelRatio", | 142 "devicePixelRatio", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 } | 284 } |
286 } | 285 } |
287 </script> | 286 </script> |
288 </head> | 287 </head> |
289 <body> | 288 <body> |
290 <p>This test checks cross-frame access security (rdar://problem/5251309).</p> | 289 <p>This test checks cross-frame access security (rdar://problem/5251309).</p> |
291 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get
-test.html" style=""></iframe> | 290 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get
-test.html" style=""></iframe> |
292 <pre id="console"></pre> | 291 <pre id="console"></pre> |
293 </body> | 292 </body> |
294 </html> | 293 </html> |
OLD | NEW |