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

Side by Side Diff: third_party/webdriver/test_data/readOnlyPage.html

Issue 424363004: Update third_party/webdriver/pylib to r18456 and delete test_data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "python" -> "pylib" Created 6 years, 4 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
(Empty)
1 <html>
2 <body>
3 <input id="writableTextInput" type="text" value="Test"/>
4
5 <input id="readOnlyTextInput" type="text" readonly value="Test"/>
6
7 <input id="textInputnotenabled" type="text" disabled="true" value="Test"/>
8
9 <textarea id="writableTextArea" rows="2" cols="20">
10 This is a sample text area which is supposed to be cleared
11 </textarea>
12
13 <textarea id="textAreaReadOnly" readonly rows="5" cols="20">
14 text area which is not supposed to be cleared</textarea>
15
16 <textarea rows="5" id="textAreaNotenabled" disabled="true" cols="20">
17 text area which is not supposed to be cleared</textarea>
18
19 <div id="content-editable" contentEditable="true">This is a contentEditable area </div>
20 </body>
21 </html>
22
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/plain.txt ('k') | third_party/webdriver/test_data/rectangles.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698