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

Side by Side Diff: LayoutTests/fast/spatial-navigation/snav-single-select-list.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 correctness of Spatial Navigation (SNav) algorithm ove r single select list element. 3 This test ensures the correctness of Spatial Navigation (SNav) algorithm ove r single select list element.
4 4
5 * Pre-conditions: 5 * Pre-conditions:
6 1) DRT support for SNav enable/disable. 6 1) DRT support for SNav enable/disable.
7 7
8 * Navigation steps: 8 * Navigation steps:
9 1) Loads this page, focus goes to "start" automatically. 9 1) Loads this page, focus goes to "start" automatically.
10 2) Focus moves away from select in 4 different directions to neighbor nodes and back. 10 2) Focus moves away from select in 4 different directions to neighbor nodes and back.
11 --> 11 -->
12 <head> 12 <head>
13 <script src="../js/resources/js-test-pre.js"></script> 13 <script src="../../resources/js-test.js"></script>
14 <script src="resources/spatial-navigation-utils.js"></script> 14 <script src="resources/spatial-navigation-utils.js"></script>
15 <script type="application/javascript"> 15 <script type="application/javascript">
16 16
17 var resultMap = [ 17 var resultMap = [
18 ["Down", "start"], 18 ["Down", "start"],
19 ["Down", "start"], 19 ["Down", "start"],
20 ["Down", "start"], 20 ["Down", "start"],
21 ["Down", "8"], 21 ["Down", "8"],
22 ["Up", "start"], 22 ["Up", "start"],
23 ["Up", "start"], 23 ["Up", "start"],
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 <td style="vertical-align: top; text-align: center;"></td> 124 <td style="vertical-align: top; text-align: center;"></td>
125 <td style="vertical-align: top; text-align: center;"><a id="8" href="a ">8</a></td> 125 <td style="vertical-align: top; text-align: center;"><a id="8" href="a ">8</a></td>
126 <td style="vertical-align: top; text-align: center;"></td> 126 <td style="vertical-align: top; text-align: center;"></td>
127 </tr> 127 </tr>
128 </tbody> 128 </tbody>
129 </table> 129 </table>
130 <div id="console"></div> 130 <div id="console"></div>
131 </body> 131 </body>
132 </html> 132 </html>
133 133
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698