| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "HTMLVideoElement", | 83 "HTMLVideoElement", |
| 84 "Image", | 84 "Image", |
| 85 "MutationEvent", | 85 "MutationEvent", |
| 86 "Node", | 86 "Node", |
| 87 "NodeFilter", | 87 "NodeFilter", |
| 88 "Notation", | 88 "Notation", |
| 89 "Option", | 89 "Option", |
| 90 "ProcessingInstruction", | 90 "ProcessingInstruction", |
| 91 "Range", | 91 "Range", |
| 92 "RangeError", | 92 "RangeError", |
| 93 "RangeException", | |
| 94 "ReferenceError", | 93 "ReferenceError", |
| 95 "SyntaxError", | 94 "SyntaxError", |
| 96 "Text", | 95 "Text", |
| 97 "TypeError", | 96 "TypeError", |
| 98 "URIError", | 97 "URIError", |
| 99 "XMLDocument", | 98 "XMLDocument", |
| 100 "XMLHttpRequest", | 99 "XMLHttpRequest", |
| 101 "XMLSerializer", | 100 "XMLSerializer", |
| 102 "XPathEvaluator", | 101 "XPathEvaluator", |
| 103 "XPathResult", | 102 "XPathResult", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 shouldBeFalse("canGetDescriptor(targetHistory, '" + historyPrope
rties[i] + "')"); | 281 shouldBeFalse("canGetDescriptor(targetHistory, '" + historyPrope
rties[i] + "')"); |
| 283 } | 282 } |
| 284 </script> | 283 </script> |
| 285 </head> | 284 </head> |
| 286 <body> | 285 <body> |
| 287 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt
ps://bugs.webkit.org/show_bug.cgi?id=32119).</p> | 286 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt
ps://bugs.webkit.org/show_bug.cgi?id=32119).</p> |
| 288 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get
-test.html" style=""></iframe> | 287 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get
-test.html" style=""></iframe> |
| 289 <pre id="console"></pre> | 288 <pre id="console"></pre> |
| 290 </body> | 289 </body> |
| 291 </html> | 290 </html> |
| OLD | NEW |