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

Side by Side Diff: LayoutTests/editing/input/style-change-during-input.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../fast/js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <style> 4 <style>
5 body[style] { } 5 body[style] { }
6 </style> 6 </style>
7 </head> 7 </head>
8 <body> 8 <body>
9 <textarea id="target"></textarea> 9 <textarea id="target"></textarea>
10 <div>The text field should accept typed characters.</div> 10 <div>The text field should accept typed characters.</div>
11 <pre id="console"></pre> 11 <pre id="console"></pre>
12 <script> 12 <script>
13 document.getElementById("target").addEventListener("textInput", function (evt) { evt.target.style.width = 100; }); 13 document.getElementById("target").addEventListener("textInput", function (evt) { evt.target.style.width = 100; });
(...skipping 10 matching lines...) Expand all
24 eventSender.keyDown("o"); 24 eventSender.keyDown("o");
25 shouldBe("window.target.value", '"hello"'); 25 shouldBe("window.target.value", '"hello"');
26 finishJSTest(); 26 finishJSTest();
27 }, 0); 27 }, 0);
28 } 28 }
29 29
30 window.jsTestIsAsync = true; 30 window.jsTestIsAsync = true;
31 </script> 31 </script>
32 </body> 32 </body>
33 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698