Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: LayoutTests/http/tests/security/cross-frame-access-getOwnPropertyDescriptor.html

Issue 14705009: Remove RangeException interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expectation Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698