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

Side by Side Diff: LayoutTests/accessibility/textarea-selection.html

Issue 1050123003: Rewrote password layout test and removed obsolete tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Renamed some more tests for consistency. 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 <!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 7
8 <textarea id="textarea" rows="3" cols="40"> 8 <textarea id="textarea" rows="3" cols="40">
9 Line 1 9 Line 1
10 Line 2 10 Line 2
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 shouldBeZero("emptyTextareaAccessible.selectionStart"); 83 shouldBeZero("emptyTextareaAccessible.selectionStart");
84 shouldBeZero("emptyTextareaAccessible.selectionEnd"); 84 shouldBeZero("emptyTextareaAccessible.selectionEnd");
85 shouldBeZero("emptyTextareaAccessible.selectionStartLineNumber"); 85 shouldBeZero("emptyTextareaAccessible.selectionStartLineNumber");
86 shouldBeZero("emptyTextareaAccessible.selectionEndLineNumber"); 86 shouldBeZero("emptyTextareaAccessible.selectionEndLineNumber");
87 87
88 } 88 }
89 </script> 89 </script>
90 90
91 </body> 91 </body>
92 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698