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/fast/dom/shadow/tabstop-property.html

Issue 1169613002: Remove unnecessary testRunner.dumpAsText in LayoutTests/fast/dom/shadow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p>This is basic behavior test for tabStop attribute.</p> 7 <p>This is basic behavior test for tabStop attribute.</p>
8 <pre id="console"></pre> 8 <pre id="console"></pre>
9 <script> 9 <script>
10 var div; 10 var div;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 shouldBeEqualToString("div.getAttribute('tabstop')", "invalid"); 106 shouldBeEqualToString("div.getAttribute('tabstop')", "invalid");
107 107
108 div.tabIndex = -1; 108 div.tabIndex = -1;
109 div.tabStop = true; 109 div.tabStop = true;
110 tabStopShouldBe("div", "true"); 110 tabStopShouldBe("div", "true");
111 div.setAttribute("tabstop", "invalid"); 111 div.setAttribute("tabstop", "invalid");
112 shouldBeFalse("div.tabStop"); 112 shouldBeFalse("div.tabStop");
113 shouldBeEqualToString("div.getAttribute('tabstop')", "invalid"); 113 shouldBeEqualToString("div.getAttribute('tabstop')", "invalid");
114 } 114 }
115 115
116 function run_test() { 116 test();
117 if (window.testRunner) 117 debug('Test finished.');
118 testRunner.dumpAsText();
119
120 test();
121
122 debug('Test finished.');
123 }
124
125 run_test();
126 </script> 118 </script>
127 </body> 119 </body>
128 </html> 120 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698