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

Unified Diff: third_party/webdriver/test_data/ajaxy_page.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/actualXhtmlPage.xhtml ('k') | third_party/webdriver/test_data/alerts.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webdriver/test_data/ajaxy_page.html
diff --git a/third_party/webdriver/test_data/ajaxy_page.html b/third_party/webdriver/test_data/ajaxy_page.html
deleted file mode 100644
index 4b34031d55a616765844a184e91ecac208d04515..0000000000000000000000000000000000000000
--- a/third_party/webdriver/test_data/ajaxy_page.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-<form action="javascript:updateDom()">
- <label for="typer">New label text:</label>
- <input name="typer" type="text"/>
- <br/>
- <label for="color">Select label color:</label>
- <input name="color" id="red" value="red" type="radio"/>Red
- <input name="color" id="green" value="green" type="radio"/>Green
- <br/>
- <input name="submit" type="submit" value="Add Label"/>
-</form>
-<div id="update_butter" style="display:none"></div>
-<script>
- var butter = document.getElementById('update_butter');
-
- var textProperty = butter['innerText'] ? 'innerText' : 'textContent';
-
- var listeners = [];
- function registerListener(fn) {
- listeners.push(fn);
- }
-
- function updateDom() {
- butter.style.display = 'block';
- butter[textProperty] = 'Updating';
- disableForm();
- tick();
- }
-
- function disableForm() {
- var inputs = document.getElementsByTagName('input');
- for (var i = 0, input; input = inputs[i]; ++i) {
- input.disabled = true;
- }
- }
-
- function enableForm() {
- var inputs = document.getElementsByTagName('input');
- for (var i = 0, input; input = inputs[i]; ++i) {
- input.disabled = false;
- }
- }
-
- function tick() {
- var length = butter[textProperty].substring('Updating'.length).length;
- if (length != 10) {
- butter[textProperty] += '.';
- window.setTimeout(tick, 500);
- } else {
- enableForm();
- var div = document.createElement('div');
- var colors = document.forms[0].color;
- for (var i = 0, color; color = colors[i]; ++i) {
- if (color.checked) {
- div.style.backgroundColor = color.value;
- break;
- }
- }
- div[textProperty] = document.forms[0].typer.value;
- div.className = 'label';
- document.forms[0].typer.value = '';
- document.body.appendChild(div);
-
- butter[textProperty] = 'Done!';
-
- window.setTimeout(function() {
- while (listeners.length) {
- try {
- listeners.shift()(div[textProperty]);
- } catch (e) {
- butter[textProperty] = "Exception seen: " + e;
- }
- }
- }, 500);
- }
- }
-</script>
-</body>
-</html>
« no previous file with comments | « third_party/webdriver/test_data/actualXhtmlPage.xhtml ('k') | third_party/webdriver/test_data/alerts.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698