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

Side by Side Diff: LayoutTests/fast/dom/Window/get-set-properties.html

Issue 715913003: Remove remaining testing of getPropertyCSSValue (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
« 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 eval("window." + keyPath + " = " + valuePath); 77 eval("window." + keyPath + " = " + valuePath);
78 return eval("window." + keyPath) === eval("window." + valuePath); 78 return eval("window." + keyPath) === eval("window." + valuePath);
79 } catch(e) { 79 } catch(e) {
80 return false; 80 return false;
81 } 81 }
82 } 82 }
83 83
84 var windowReadWriteProperties = [ 84 var windowReadWriteProperties = [
85 "Attr", 85 "Attr",
86 "CDATASection", 86 "CDATASection",
87 "CSSPrimitiveValue",
88 "CSSRule", 87 "CSSRule",
89 "CSSStyleDeclaration", 88 "CSSStyleDeclaration",
90 "CharacterData", 89 "CharacterData",
91 "Comment", 90 "Comment",
92 "DOMException", 91 "DOMException",
93 "DOMImplementation", 92 "DOMImplementation",
94 "DOMParser", 93 "DOMParser",
95 "Document", 94 "Document",
96 "DocumentFragment", 95 "DocumentFragment",
97 "DocumentType", 96 "DocumentType",
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 317
319 log("\n----- tests for getting/setting event handlers -----\n"); 318 log("\n----- tests for getting/setting event handlers -----\n");
320 319
321 for (var i = 0; i < windowEventHandlers.length; i++) { 320 for (var i = 0; i < windowEventHandlers.length; i++) {
322 var property = windowEventHandlers[i]; 321 var property = windowEventHandlers[i];
323 shouldBeTrue("canGet('" + property + "')"); 322 shouldBeTrue("canGet('" + property + "')");
324 shouldBeTrue("canSetWithCallable('" + property + "')"); 323 shouldBeTrue("canSetWithCallable('" + property + "')");
325 } 324 }
326 } 325 }
327 </script> 326 </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
This is Rietveld 408576698