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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-appearance-wrap.html

Issue 1522803002: Move textarea-related tests to fast/forms/textarea/, part 1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@color-uaf
Patch Set: Created 5 years 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 <body> 2 <body>
3 This tests that textarea wrap attributes work correctly when submitting a form. 3 This tests that textarea wrap attributes work correctly when submitting a form.
4 <form action="?" name=f> 4 <form action="?" name=f>
5 <textarea name=ta_WrapHard cols=5 style="-webkit-appearance:textarea" wrap=hard >123456789</textarea><br> 5 <textarea name=ta_WrapHard cols=5 style="-webkit-appearance:textarea" wrap=hard >123456789</textarea><br>
6 <textarea name=ta_WrapSoft cols=5 style="-webkit-appearance:textarea" wrap=soft >123456789</textarea><br> 6 <textarea name=ta_WrapSoft cols=5 style="-webkit-appearance:textarea" wrap=soft >123456789</textarea><br>
7 <textarea name=ta_WrapOff cols=5 style="-webkit-appearance:textarea" wrap=off>1 23456789</textarea><br> 7 <textarea name=ta_WrapOff cols=5 style="-webkit-appearance:textarea" wrap=off>1 23456789</textarea><br>
8 <textarea name=ta_WrapHardRTL cols=5 style="-webkit-appearance:textarea; direct ion:rtl" wrap=hard>&#1488;&#1489;&#1490;&#1488;&#1489;&#1490;&#1488;&#1489;&#149 0;&#1488;&#1489;&#1490;</textarea><br> 8 <textarea name=ta_WrapHardRTL cols=5 style="-webkit-appearance:textarea; direct ion:rtl" wrap=hard>&#1488;&#1489;&#1490;&#1488;&#1489;&#1490;&#1488;&#1489;&#149 0;&#1488;&#1489;&#1490;</textarea><br>
9 <textarea name=ta_WrapHardBidi cols=5 style="-webkit-appearance:textarea; direc tion:ltr" wrap=hard>abc&#1488;&#1489;&#1490;&#1488;&#1489;&#1490;abc</textarea>< br> 9 <textarea name=ta_WrapHardBidi cols=5 style="-webkit-appearance:textarea; direc tion:ltr" wrap=hard>abc&#1488;&#1489;&#1490;&#1488;&#1489;&#1490;abc</textarea>< br>
10 <textarea name=ta_WrapHardHidden cols=5 style="-webkit-appearance:textarea; vis ibility:hidden" wrap=hard>123456789</textarea><br> 10 <textarea name=ta_WrapHardHidden cols=5 style="-webkit-appearance:textarea; vis ibility:hidden" wrap=hard>123456789</textarea><br>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 if (window.testRunner) 62 if (window.testRunner)
63 testRunner.notifyDone(); 63 testRunner.notifyDone();
64 } 64 }
65 65
66 } else { 66 } else {
67 document.write("<p>This test doesn't work directly from bugzilla, please sav e it to a local file first.</p>"); 67 document.write("<p>This test doesn't work directly from bugzilla, please sav e it to a local file first.</p>");
68 } 68 }
69 </script> 69 </script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698