| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "HTMLTableRowElement", | 77 "HTMLTableRowElement", |
| 78 "HTMLTableSectionElement", | 78 "HTMLTableSectionElement", |
| 79 "HTMLTextAreaElement", | 79 "HTMLTextAreaElement", |
| 80 "HTMLTitleElement", | 80 "HTMLTitleElement", |
| 81 "HTMLUListElement", | 81 "HTMLUListElement", |
| 82 "HTMLVideoElement", | 82 "HTMLVideoElement", |
| 83 "Image", | 83 "Image", |
| 84 "MutationEvent", | 84 "MutationEvent", |
| 85 "Node", | 85 "Node", |
| 86 "NodeFilter", | 86 "NodeFilter", |
| 87 "Notation", | |
| 88 "Option", | 87 "Option", |
| 89 "ProcessingInstruction", | 88 "ProcessingInstruction", |
| 90 "Range", | 89 "Range", |
| 91 "RangeError", | 90 "RangeError", |
| 92 "ReferenceError", | 91 "ReferenceError", |
| 93 "SyntaxError", | 92 "SyntaxError", |
| 94 "Text", | 93 "Text", |
| 95 "TypeError", | 94 "TypeError", |
| 96 "URIError", | 95 "URIError", |
| 97 "XMLDocument", | 96 "XMLDocument", |
| (...skipping 189 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 |