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

Side by Side Diff: LayoutTests/accessibility/canvas-accessibilitynodeobject.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 id="myContainer" tabindex="-1"> 6 <div id="myContainer" tabindex="-1">
7 <a href="#">Link</a> 7 <a href="#">Link</a>
8 <button>Button</button> 8 <button>Button</button>
9 <input type="text"> 9 <input type="text">
10 <input type="checkbox"> 10 <input type="checkbox">
11 <input type="radio"> 11 <input type="radio">
12 <input type="submit"> 12 <input type="submit">
13 <select><option>1<option>2</select> 13 <select><option>1<option>2</select>
14 <span tabindex="0" role="button">ARIA button</span> 14 <span tabindex="0" role="button">ARIA button</span>
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 var axRenderObject = axRenderObjects[i]; 63 var axRenderObject = axRenderObjects[i];
64 var axNodeObject = axNodeObjects[i]; 64 var axNodeObject = axNodeObjects[i];
65 shouldBe("i == " + i + "; axRenderObject.role == axNodeObject.role", "tr ue"); 65 shouldBe("i == " + i + "; axRenderObject.role == axNodeObject.role", "tr ue");
66 } 66 }
67 } 67 }
68 68
69 </script> 69 </script>
70 70
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698