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

Unified Diff: third_party/webdriver/test_data/veryLargeCanvas.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
« no previous file with comments | « third_party/webdriver/test_data/upload.html ('k') | third_party/webdriver/test_data/visibility-css.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webdriver/test_data/veryLargeCanvas.html
diff --git a/third_party/webdriver/test_data/veryLargeCanvas.html b/third_party/webdriver/test_data/veryLargeCanvas.html
deleted file mode 100644
index 5fe8528bee4581b3ab4af0cf66d064332b85f007..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/veryLargeCanvas.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0"?>
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>Rectangles</title>
- <script type="text/javascript">
- function appendMessage(message) {
- document.getElementById('result').innerHTML += message
- + " ";
- }
- </script>
- <style type="text/css">
- #r1 {
- position: absolute;
- background-color: lightblue;
- left: 100px;
- top: 100px;
- width: 100px;
- height: 50px;
- }
- #r2 {
- position: absolute;
- background-color: red;
- left: 2500px;
- top: 50px;
- width: 80px;
- height: 50px;
- }
- #r3 {
- position: absolute;
- background-color: yellow;
- left: 60px;
- top: 1500px;
- width: 80px;
- height: 50px;
- }
- #r4 {
- position: absolute;
- background-color: cyan;
- left: 220px;
- top: 180px;
- width: 100px;
- height: 50px;
- }
- #r5 {
- position: absolute;
- background-color: blue;
- left: 60px;
- top: 1600px;
- width: 80px;
- height: 50px;
- }
- #r6 {
- position: absolute;
- background-color: green;
- left: 2581px;
- top: 50px;
- width: 80px;
- height: 50px;
- }
- #result {
- border: 10;
- padding: 5;
- background-color: grey;
- position: absolute;
- left: 20px;
- top: 30px;
- width: 400px;
- height: 20px;
- }
- </style>
-</head>
-<body>
- <div id="result"></div>
- <div id="r1" onclick="appendMessage('First')">First Target</div>
- <div id="r2" onclick="appendMessage('Second')">Second Target</div>
- <div id="r3" onclick="appendMessage('Third')">Third Target</div>
- <div id="r4" onclick="appendMessage('Fourth')">Fourth Target</div>
- <div id="r5" onclick="appendMessage('OOPS2')">Not a Target</div>
- <div id="r6" onclick="appendMessage('OOPS')">Not a Target</div>
-</body>
-</html>
« no previous file with comments | « third_party/webdriver/test_data/upload.html ('k') | third_party/webdriver/test_data/visibility-css.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698