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

Unified Diff: third_party/webdriver/test_data/mousePositionTracker.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/mousePositionTracker.html
diff --git a/third_party/webdriver/test_data/mousePositionTracker.html b/third_party/webdriver/test_data/mousePositionTracker.html
deleted file mode 100644
index 39a31cda4f4cef6e30590cc10d4f7440718fde6f..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/mousePositionTracker.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
- <head>
- <style type="text/css">
- div.solidborder
- {
- border-style:solid;
- border-width:1px;
- }
- </style>
-
- <script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
- <script type="text/javascript" src="js/jquery-ui-1.8.10.custom.min.js"></script>
- <script type="text/javascript">
- jQuery(document).ready(function(){
- $('#mousetracker').mousemove(function(e){
- xPos = e.pageX - this.offsetLeft;
- yPos = e.pageY - this.offsetTop;
- $('#status').html(xPos + ', ' + yPos);
- });
- })
-
-</script>
-<body>
- <b>Div tracking mouse position.</b>
- <br>
-<div id="mousetracker" class="solidborder" style="position: absolute; left: 10px; top: 80px; height: 400px; width: 100px; padding: 0px;">
- Move mouse here.
-</div>
-<h2 id="status">
-0, 0
-</h2>
-</body>
-</html>
« no previous file with comments | « third_party/webdriver/test_data/missedJsReference.html ('k') | third_party/webdriver/test_data/nestedElements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698