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

Side by Side Diff: LayoutTests/accessibility/aria-hidden-update.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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../fast/js/resources/js-test-pre.js"></script> 4 <script src="../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body id="body"> 6 <body id="body">
7 7
8 <div role="group" tabindex="0" id="parent"> 8 <div role="group" tabindex="0" id="parent">
9 <div role="button" id="button1" tabindex="0">Button 1</div> 9 <div role="button" id="button1" tabindex="0">Button 1</div>
10 <div role="button" id="button2" tabindex="0">Button 2</div> 10 <div role="button" id="button2" tabindex="0">Button 2</div>
11 <div role="button" id="button3" tabindex="0">Button 3</div> 11 <div role="button" id="button3" tabindex="0">Button 3</div>
12 12
13 </div> 13 </div>
14 14
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 // Make the 2nd button not hidden. 2 and 3 should be present. 49 // Make the 2nd button not hidden. 2 and 3 should be present.
50 document.getElementById("button2").setAttribute("aria-hidden", "fals e"); 50 document.getElementById("button2").setAttribute("aria-hidden", "fals e");
51 shouldBeTrue("parent.childAtIndex(0).isEqual(button2)"); 51 shouldBeTrue("parent.childAtIndex(0).isEqual(button2)");
52 shouldBeTrue("parent.childAtIndex(1).isEqual(button3)"); 52 shouldBeTrue("parent.childAtIndex(1).isEqual(button3)");
53 53
54 } 54 }
55 </script> 55 </script>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698