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

Side by Side Diff: LayoutTests/fast/forms/onchange-setvalueforuser.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="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 function test() { 5 function test() {
6 var tf = document.getElementById('tf'); 6 var tf = document.getElementById('tf');
7 7
8 var didFireOnChange = false; 8 var didFireOnChange = false;
9 tf.onchange = function() { 9 tf.onchange = function() {
10 didFireOnChange = true; 10 didFireOnChange = true;
11 } 11 }
12 12
13 if (window.testRunner) { 13 if (window.testRunner) {
(...skipping 21 matching lines...) Expand all
35 </script> 35 </script>
36 </head> 36 </head>
37 <body onload="test()"> 37 <body onload="test()">
38 This tests that onchange correctly fires after calling setValueForUser(). I t can only be run using DumpRenderTree.<br> 38 This tests that onchange correctly fires after calling setValueForUser(). I t can only be run using DumpRenderTree.<br>
39 <form name="fm"> 39 <form name="fm">
40 <input type="text" id="tf" /> 40 <input type="text" id="tf" />
41 </form> 41 </form>
42 <div id="console"></div> 42 <div id="console"></div>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/number/number-wheel-event.html ('k') | LayoutTests/fast/forms/option-label-trim-html-spaces.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698