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

Side by Side Diff: LayoutTests/accessibility/readonly.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | 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="../fast/js/resources/js-test-pre.js"></script>
5 5
6 <div> 6 <div>
7 <a id="link1" href="#">Link</a> 7 <a id="link1" href="#">Link</a>
8 <button id="button1">Button</button> 8 <button id="button1">Button</button>
9 <input id="text1" type="text" value="Value"> 9 <input id="text1" type="text" value="Value">
10 <input id="checkbox1" type="checkbox" checked> 10 <input id="checkbox1" type="checkbox" checked>
11 <input id="number1" type="number" value="123"> 11 <input id="number1" type="number" value="123">
12 <input id="radio1" type="radio" checked> 12 <input id="radio1" type="radio" checked>
13 <input id="slider1" type="range" min="1" max="10" value="5"> 13 <input id="slider1" type="range" min="1" max="10" value="5">
14 <input id="submit1" type="submit"> 14 <input id="submit1" type="submit">
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 check("heading1", true); 59 check("heading1", true);
60 check("aria-button1", true); 60 check("aria-button1", true);
61 check("aria-togglebutton1", true); 61 check("aria-togglebutton1", true);
62 check("aria-link1", true); 62 check("aria-link1", true);
63 check("contenteditable_root1", false); 63 check("contenteditable_root1", false);
64 check("contenteditable_button1", false); 64 check("contenteditable_button1", false);
65 } 65 }
66 66
67 </script> 67 </script>
68 68
69 <script src="../../../fast/js/resources/js-test-post.js"></script> 69 <script src="../fast/js/resources/js-test-post.js"></script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698