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

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

Issue 711043004: Don't test CSSValue in http/tests/security tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
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",
10 "CSSRule", 9 "CSSRule",
11 "CSSStyleDeclaration", 10 "CSSStyleDeclaration",
12 "CSSValue",
13 "CharacterData", 11 "CharacterData",
14 "Comment", 12 "Comment",
15 "DOMException", 13 "DOMException",
16 "DOMImplementation", 14 "DOMImplementation",
17 "DOMParser", 15 "DOMParser",
18 "Document", 16 "Document",
19 "DocumentFragment", 17 "DocumentFragment",
20 "DocumentType", 18 "DocumentType",
21 "Element", 19 "Element",
22 "EntityReference", 20 "EntityReference",
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 shouldThrowException("targetWindow.history"); 271 shouldThrowException("targetWindow.history");
274 } 272 }
275 </script> 273 </script>
276 </head> 274 </head>
277 <body> 275 <body>
278 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt ps://bugs.webkit.org/show_bug.cgi?id=32119).</p> 276 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt ps://bugs.webkit.org/show_bug.cgi?id=32119).</p>
279 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get -test.html" style=""></iframe> 277 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get -test.html" style=""></iframe>
280 <pre id="console"></pre> 278 <pre id="console"></pre>
281 </body> 279 </body>
282 </html> 280 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698