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

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

Issue 143673005: Remove Entity interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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
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",
11 "CSSStyleDeclaration", 11 "CSSStyleDeclaration",
12 "CSSValue", 12 "CSSValue",
13 "CharacterData", 13 "CharacterData",
14 "Comment", 14 "Comment",
15 "DOMException", 15 "DOMException",
16 "DOMImplementation", 16 "DOMImplementation",
17 "DOMParser", 17 "DOMParser",
18 "Document", 18 "Document",
19 "DocumentFragment", 19 "DocumentFragment",
20 "DocumentType", 20 "DocumentType",
21 "Element", 21 "Element",
22 "Entity",
23 "EntityReference", 22 "EntityReference",
24 "EvalError", 23 "EvalError",
25 "Event", 24 "Event",
26 "HTMLAnchorElement", 25 "HTMLAnchorElement",
27 "HTMLAudioElement", 26 "HTMLAudioElement",
28 "HTMLAppletElement", 27 "HTMLAppletElement",
29 "HTMLAreaElement", 28 "HTMLAreaElement",
30 "HTMLBRElement", 29 "HTMLBRElement",
31 "HTMLBaseElement", 30 "HTMLBaseElement",
32 "HTMLBodyElement", 31 "HTMLBodyElement",
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 shouldThrowException("targetWindow.history"); 287 shouldThrowException("targetWindow.history");
289 } 288 }
290 </script> 289 </script>
291 </head> 290 </head>
292 <body> 291 <body>
293 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt ps://bugs.webkit.org/show_bug.cgi?id=32119).</p> 292 <p>This test checks cross-frame access security of getOwnPropertyDescriptor (htt ps://bugs.webkit.org/show_bug.cgi?id=32119).</p>
294 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get -test.html" style=""></iframe> 293 <iframe src="http://localhost:8000/security/resources/cross-frame-iframe-for-get -test.html" style=""></iframe>
295 <pre id="console"></pre> 294 <pre id="console"></pre>
296 </body> 295 </body>
297 </html> 296 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698