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

Side by Side Diff: LayoutTests/fast/spatial-navigation/snav-iframe-no-focusable-content.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 <!-- 2 <!--
3 This test ensures the basic traversal correctness of Spatial Navigation 3 This test ensures the basic traversal correctness of Spatial Navigation
4 algorithm: iframes without any focusable content should be ignored. 4 algorithm: iframes without any focusable content should be ignored.
5 5
6 * Pre-conditions: 6 * Pre-conditions:
7 1) DRT support for SNav enable/disable. 7 1) DRT support for SNav enable/disable.
8 8
9 * Navigation steps: 9 * Navigation steps:
10 1) Loads this page, focus goes to "start" automatically. 10 1) Loads this page, focus goes to "start" automatically.
11 2) Focus moves from "start" to "end" bypassing the two iframes 11 2) Focus moves from "start" to "end" bypassing the two iframes
12 in between them, once both have no focusable elements inside. 12 in between them, once both have no focusable elements inside.
13 --> 13 -->
14 <head> 14 <head>
15 <script src="../js/resources/js-test-pre.js"></script> 15 <script src="../../resources/js-test.js"></script>
16 <script src="resources/spatial-navigation-utils.js"></script> 16 <script src="resources/spatial-navigation-utils.js"></script>
17 <script type="application/javascript"> 17 <script type="application/javascript">
18 18
19 var resultMap = [ 19 var resultMap = [
20 ["Down", "start"], 20 ["Down", "start"],
21 ["Down", "start"], 21 ["Down", "start"],
22 ["Down", "start"], 22 ["Down", "start"],
23 ["Down", "start"], 23 ["Down", "start"],
24 ["Down", "start"], 24 ["Down", "start"],
25 ["Down", "start"], 25 ["Down", "start"],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 <body> 71 <body>
72 <img width=120 height=200 src='resources/green.png'> 72 <img width=120 height=200 src='resources/green.png'>
73 </body> 73 </body>
74 "></iframe><br> 74 "></iframe><br>
75 75
76 <a id="end" href="a">e</a> 76 <a id="end" href="a">e</a>
77 <div id="console"></div> 77 <div id="console"></div>
78 This is to test that an iframe with no focusable content still scrolls 78 This is to test that an iframe with no focusable content still scrolls
79 </body> 79 </body>
80 </html> 80 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698