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

Side by Side Diff: LayoutTests/accessibility/aria-tab-roles.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="../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 <ul id="tablist_1" role="tablist"> 8 <ul id="tablist_1" role="tablist">
9 <li id="tab_1" role="tab" tabindex="0" class="">Crust</li> 9 <li id="tab_1" role="tab" tabindex="0" class="">Crust</li>
10 <li id="tab_2" role="tab" tabindex="0" class="">Veges</li> 10 <li id="tab_2" role="tab" tabindex="0" class="">Veges</li>
11 </ul> 11 </ul>
12 12
13 <div id="panel_1" role="tabpanel" aria-labelledby="tab_1" > 13 <div id="panel_1" role="tabpanel" aria-labelledby="tab_1" >
14 <h3>Select Crust</h3> 14 <h3>Select Crust</h3>
(...skipping 24 matching lines...) Expand all
39 debug("tab2.role = " + tab2.role); 39 debug("tab2.role = " + tab2.role);
40 shouldBe("tab2.title", "'AXTitle: Veges'"); 40 shouldBe("tab2.title", "'AXTitle: Veges'");
41 debug("tabPanel.role = " + tabPanel.role); 41 debug("tabPanel.role = " + tabPanel.role);
42 debug("tabPanel.subrole = " + tabPanel.subrole); 42 debug("tabPanel.subrole = " + tabPanel.subrole);
43 } 43 }
44 44
45 </script> 45 </script>
46 46
47 </body> 47 </body>
48 </html> 48 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/aria-scrollbar-role.html ('k') | LayoutTests/accessibility/aria-text-role.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698