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

Unified Diff: third_party/webdriver/test_data/clickEventPage.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, 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 side-by-side diff with in-line comments
Download patch
Index: third_party/webdriver/test_data/clickEventPage.html
diff --git a/third_party/webdriver/test_data/clickEventPage.html b/third_party/webdriver/test_data/clickEventPage.html
deleted file mode 100644
index bad62390c9f71f617812dd5b076d3e073135a7d2..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/clickEventPage.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0"?>
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Testing click events</title>
- <script type="text/javascript">
- function displayEvent(event) {
- var keys = ['x', 'y', 'clientX', 'clientY', 'pageX', 'pageY', 'screenX', 'screenY'];
- var message = "<ul>";
- for (var i = 0; i < keys.length; i++) {
- message += "<li>" + keys[i] + ": <span id='" + keys[i] + "'>" + event[keys[i]] + "</span></li>";
- }
- message += "</ul>";
- document.getElementById('result').innerHTML = message;
- }
- </script>
-</head>
-<body>
- <div id="eventish" onclick="displayEvent(event);">
- Click me to view my coordinates
- </div>
-
- <div id="result" style="width:300;height:60">
- <p>&nbsp;</p>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698