Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/dom/Window/get-set-properties.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.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/get-set-properties-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <p>This page tests getting and setting window properties and functions.</p> 1 <p>This page tests getting and setting window properties and functions.</p>
2 <pre id="console"></pre> 2 <pre id="console"></pre>
3 3
4 <script> 4 <script>
5 function log(s) 5 function log(s)
6 { 6 {
7 document.getElementById("console").appendChild(document.createTextNode(s + " \n")); 7 document.getElementById("console").appendChild(document.createTextNode(s + " \n"));
8 } 8 }
9 9
10 function shouldBe(a, b) 10 function shouldBe(a, b)
(...skipping 79 matching lines...)
90 "CSSValue", 90 "CSSValue",
91 "CharacterData", 91 "CharacterData",
92 "Comment", 92 "Comment",
93 "DOMException", 93 "DOMException",
94 "DOMImplementation", 94 "DOMImplementation",
95 "DOMParser", 95 "DOMParser",
96 "Document", 96 "Document",
97 "DocumentFragment", 97 "DocumentFragment",
98 "DocumentType", 98 "DocumentType",
99 "Element", 99 "Element",
100 "Entity",
101 "EvalError", 100 "EvalError",
102 "Event", 101 "Event",
103 "HTMLAnchorElement", 102 "HTMLAnchorElement",
104 "HTMLAppletElement", 103 "HTMLAppletElement",
105 "HTMLAreaElement", 104 "HTMLAreaElement",
106 "HTMLBRElement", 105 "HTMLBRElement",
107 "HTMLBaseElement", 106 "HTMLBaseElement",
108 "HTMLBodyElement", 107 "HTMLBodyElement",
109 "HTMLButtonElement", 108 "HTMLButtonElement",
110 "HTMLCanvasElement", 109 "HTMLCanvasElement",
(...skipping 209 matching lines...)
320 319
321 log("\n----- tests for getting/setting event handlers -----\n"); 320 log("\n----- tests for getting/setting event handlers -----\n");
322 321
323 for (var i = 0; i < windowEventHandlers.length; i++) { 322 for (var i = 0; i < windowEventHandlers.length; i++) {
324 var property = windowEventHandlers[i]; 323 var property = windowEventHandlers[i];
325 shouldBeTrue("canGet('" + property + "')"); 324 shouldBeTrue("canGet('" + property + "')");
326 shouldBeTrue("canSetWithCallable('" + property + "')"); 325 shouldBeTrue("canSetWithCallable('" + property + "')");
327 } 326 }
328 } 327 }
329 </script> 328 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/get-set-properties-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine