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

Unified Diff: blimp/test/data/input.html

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 years, 11 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 | « blimp/test/DEPS ('k') | blimp/test/data/page1.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « blimp/test/DEPS ('k') | blimp/test/data/page1.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698