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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/test/events.html
diff --git a/chrome/test/webdriver/test/events.html b/chrome/test/webdriver/test/events.html
deleted file mode 100644
index 1d69cb9e746c7686f21fb4c5bed899d4c4ce6ade..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/test/events.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
- <script>
- var g_events = [];
- function addEvent(e) {
- g_events.push(e);
- }
- function takeEvents() {
- var temp = g_events;
- g_events = [];
- return temp;
- }
- window.onload = function() {
- document.body.addEventListener('mousedown', addEvent);
- document.body.addEventListener('mouseup', addEvent);
- document.body.addEventListener('mousemove', addEvent);
- document.body.addEventListener('dblclick', addEvent);
- }
- </script>
- <body>
- <div>Test</div>
- <div>Test2</div>
- </body>
-</html>
« 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