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

Side by Side Diff: chrome/test/webdriver/test_page.html

Issue 7331004: Move chromedriver tests to test subdirectory. Add script to run all chromedriver (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: ... Created 9 years, 5 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
« no previous file with comments | « chrome/test/webdriver/test/upload.html ('k') | chrome/test/webdriver/upload.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <script>
3 var success = false;
4 function succeed() {
5 success = true;
6 }
7 </script>
8 <div style="height:30px"></div>
9 <div style="width:100px">
10 <a name="wrapped" style="margin-left:200px" onclick="succeed()">Click me</a>
11 </div>
12 <div style="height:100px; overflow:scroll">
13 <br><br><br><br><br><br><br><br><br>
14 <a name="hidden_scroll" onclick="succeed()">Click Here</a>
15 <iframe name="iframe" src="iframe_src.html"></iframe>
16 </div>
17
18 <div style="height:5000px"></div>
19 <a name="far_away" style="margin-left:5000px" onclick="succeed()">Click</a>
20
21 <input type="text" name="key_input_test"/>
22
23 <select><option>1</option><option name="option">2</option></select>
24
25 <div name="editable" contentEditable>
26 <div name="editable_child">editable</div>
27 </div>
28
29 </html>
OLDNEW
« no previous file with comments | « chrome/test/webdriver/test/upload.html ('k') | chrome/test/webdriver/upload.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698