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

Side by Side Diff: third_party/webdriver/test_data/scroll.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 <head>
3 </head>
4 <body>
5 <script>
6 function dump(event) {
7 var elt = event.target || event.srcElement;
8 document.getElementById('clicked').innerHTML = elt.innerHTML;
9 }
10 </script>
11 <ul style='overflow: scroll; width: 150px; height: 80px; background-color: yello w' onclick="dump(event)">
12 <li id='line1'>line1</li>
13 <li id='line2'>line2</li>
14 <li id='line3'>line3</li>
15 <li id='line4'>line4</li>
16 <li id='line5'>line5</li>
17 <li id='line6'>line6</li>
18 <li id='line7'>line7</li>
19 <li id='line8'>line8</li>
20 <li id='line9'>line9</li>
21 </ul>
22 <div>
23 Clicked: <span id='clicked'></span>
24 </div>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « third_party/webdriver/test_data/rich_text.html ('k') | third_party/webdriver/test_data/scroll2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698