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

Side by Side Diff: LayoutTests/accessibility/disabled-controls-not-focusable.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> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 5
6 <div> 6 <div>
7 <button id="button"></button> 7 <button id="button"></button>
8 <input id="text" type="text"> 8 <input id="text" type="text">
9 <input id="checkbox" type="checkbox"> 9 <input id="checkbox" type="checkbox">
10 <input id="radio" type="radio"> 10 <input id="radio" type="radio">
11 <input id="submit" type="submit"> 11 <input id="submit" type="submit">
12 <input id="slider" type="range"> 12 <input id="slider" type="range">
13 <select id="combobox"><option>1<option>2</select> 13 <select id="combobox"><option>1<option>2</select>
14 <select id="listbox" multiple><option>1<option>2</select> 14 <select id="listbox" multiple><option>1<option>2</select>
(...skipping 25 matching lines...) Expand all
40 checkControl("slider"); 40 checkControl("slider");
41 checkControl("combobox"); 41 checkControl("combobox");
42 checkControl("listbox"); 42 checkControl("listbox");
43 checkControl("textarea"); 43 checkControl("textarea");
44 } 44 }
45 45
46 </script> 46 </script>
47 47
48 </body> 48 </body>
49 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698