Index: blimp/test/data/input.html |
diff --git a/blimp/test/data/input.html b/blimp/test/data/input.html |
deleted file mode 100644 |
index f2fc1d9166746e162687be1a9e789705f76a3487..0000000000000000000000000000000000000000 |
--- a/blimp/test/data/input.html |
+++ /dev/null |
@@ -1,26 +0,0 @@ |
-<!doctype html> |
-<script> |
- |
-window.onload = function() { |
- var form = document.getElementById('form'); |
- var input = document.getElementById('input'); |
- |
- input.oninput = function() { |
- document.title = this.value; |
- }; |
- |
- // Should trigger IME dialog on a tap event. |
- document.onclick = function() { |
- input.focus(); |
- }; |
- |
- form.onsubmit = function() { |
- window.domAutomationController.setAutomationId(0); |
- window.domAutomationController.send("Submitted"); |
- }; |
-}; |
- |
-</script> |
-<form id="form"> |
- <input type="text" id="input"> |
-</form> |