| 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>
|
|
|