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

Unified Diff: third_party/webdriver/test_data/javascriptEnhancedForm.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/iframes.html ('k') | third_party/webdriver/test_data/javascriptPage.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webdriver/test_data/javascriptEnhancedForm.html
diff --git a/third_party/webdriver/test_data/javascriptEnhancedForm.html b/third_party/webdriver/test_data/javascriptEnhancedForm.html
deleted file mode 100644
index c5b65760235f6e6c83cbe0dce8e9e3f7c2ae994a..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/javascriptEnhancedForm.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-
-<html>
- <head>
- <title>Javascript Enhanced Page</title>
- </head>
- <body>
- <form id="form1" action="javascriptEnhancedForm.html" method="post">
- <p>
- <label id="labelforusername" for="username">
- Username: <input id="username" type="text" name="username" />
- <script type="text/javascript">
- document.getElementById('username').value = 'Michael';
- </script>
- </label>
- </p>
- <p>
- <label for="password">
- Password: <input id="password" type="password" name="password" />
- <script type="text/javascript">
- var z = document.getElementById('password'); setTimeout('try{z.focus();z.select();} catch(e) {}', 1);
- </script>
- </label>
- </p>
- <p>
- <input type="submit" value="Submit" />
- </p>
- </form>
- </body>
-</html>
« no previous file with comments | « third_party/webdriver/test_data/iframes.html ('k') | third_party/webdriver/test_data/javascriptPage.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698