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

Side by Side Diff: LayoutTests/fast/forms/range/range-drag-when-toggled-disabled.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 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description">Test for dragging operations of &lt;input type=range&gt; whe n <code>readonly</code> or <code>disabled</code> are toggled.</p> 7 <p id="description">Test for dragging operations of &lt;input type=range&gt; whe n <code>readonly</code> or <code>disabled</code> are toggled.</p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <input type="range" id="range1" min="0" max="100" value="50"> 9 <input type="range" id="range1" min="0" max="100" value="50">
10 <input type="range" id="range2" min="0" max="100" value="50"> 10 <input type="range" id="range2" min="0" max="100" value="50">
11 <script> 11 <script>
12 12
13 var changeEventCounter = 0; 13 var changeEventCounter = 0;
14 var lastChangeEventCounter = changeEventCounter; 14 var lastChangeEventCounter = changeEventCounter;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 testInput('range1', 'readOnly'); 79 testInput('range1', 'readOnly');
80 debug(''); 80 debug('');
81 81
82 debug('Tests for range dragging while it toggles to be disabled.'); 82 debug('Tests for range dragging while it toggles to be disabled.');
83 testInput('range2', 'disabled'); 83 testInput('range2', 'disabled');
84 debug(''); 84 debug('');
85 85
86 </script> 86 </script>
87 </body> 87 </body>
88 </html> 88 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/range/range-drag.html ('k') | LayoutTests/fast/forms/range/range-focus-by-mouse.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698