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

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

Issue 23526047: Delete old chromedriver code, and remove mongoose webserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 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/empty.html ('k') | chrome/test/webdriver/test/ext_test_1.crx » ('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 g_events = [];
4 function addEvent(e) {
5 g_events.push(e);
6 }
7 function takeEvents() {
8 var temp = g_events;
9 g_events = [];
10 return temp;
11 }
12 window.onload = function() {
13 document.body.addEventListener('mousedown', addEvent);
14 document.body.addEventListener('mouseup', addEvent);
15 document.body.addEventListener('mousemove', addEvent);
16 document.body.addEventListener('dblclick', addEvent);
17 }
18 </script>
19 <body>
20 <div>Test</div>
21 <div>Test2</div>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « chrome/test/webdriver/test/empty.html ('k') | chrome/test/webdriver/test/ext_test_1.crx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698