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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « blimp/test/DEPS ('k') | blimp/test/data/page1.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <script>
3
4 window.onload = function() {
5 var form = document.getElementById('form');
6 var input = document.getElementById('input');
7
8 input.oninput = function() {
9 document.title = this.value;
10 };
11
12 // Should trigger IME dialog on a tap event.
13 document.onclick = function() {
14 input.focus();
15 };
16
17 form.onsubmit = function() {
18 window.domAutomationController.setAutomationId(0);
19 window.domAutomationController.send("Submitted");
20 };
21 };
22
23 </script>
24 <form id="form">
25 <input type="text" id="input">
26 </form>
OLDNEW
« 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