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

Side by Side Diff: LayoutTests/accessibility/label-element-press.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 6
7 <body id="body"> 7 <body id="body">
8 8
9 <label tabindex=0 onclick="performEvent();" id="labelElement">label</label> 9 <label tabindex=0 onclick="performEvent();" id="labelElement">label</label>
10 10
11 <p id="description"></p> 11 <p id="description"></p>
12 <div id="console"></div> 12 <div id="console"></div>
13 13
14 <script> 14 <script>
(...skipping 12 matching lines...) Expand all
27 var label = body.childAtIndex(0).childAtIndex(0); 27 var label = body.childAtIndex(0).childAtIndex(0);
28 28
29 // if successful, performEvent() will be called and we'll successfully p arse. 29 // if successful, performEvent() will be called and we'll successfully p arse.
30 label.press(); 30 label.press();
31 } 31 }
32 32
33 </script> 33 </script>
34 34
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698