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

Side by Side Diff: LayoutTests/accessibility/editable-line-for-index.html

Issue 1073953002: Renamed layout tests in preparation for adding code to test contenteditable and role="textbox" in a… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 <script> 2 <script>
3 if (window.testRunner) 3 if (window.testRunner)
4 testRunner.dumpAsText(); 4 testRunner.dumpAsText();
5 </script> 5 </script>
6 <body> 6 <body>
7 7
8 <div id="result"></div> 8 <div id="result"></div>
9 9
10 <textarea name="area1" id="area1" rows="5" cols="40"> 10 <textarea name="area1" id="area1" rows="5" cols="40">
(...skipping 16 matching lines...) Expand all
27 result.innerText += "Test:" + k + ") Line For Index: Pass [" + index + "->" + lineNumber + "]\n"; 27 result.innerText += "Test:" + k + ") Line For Index: Pass [" + index + "->" + lineNumber + "]\n";
28 } 28 }
29 else { 29 else {
30 result.innerText += "Test:" + k + ") Line For Index: Fail [" + index + "->" + lineNumber + "]\n"; 30 result.innerText += "Test:" + k + ") Line For Index: Fail [" + index + "->" + lineNumber + "]\n";
31 } 31 }
32 } 32 }
33 } 33 }
34 </script> 34 </script>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698