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

Side by Side Diff: LayoutTests/fast/spatial-navigation/snav-radio-group.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 element. 3 This test ensures the correctness of Spatial Navigation (SNav) algorithm ove r single select 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", "down"], 18 ["Down", "down"],
19 ["Down", "8"], 19 ["Down", "8"],
20 ["Up", "down"], 20 ["Up", "down"],
21 ["Up", "start"], 21 ["Up", "start"],
22 ["Up", "up"], 22 ["Up", "up"],
23 ["Up", "2"], 23 ["Up", "2"],
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 <td style="vertical-align: center; text-align: center;"></td> 99 <td style="vertical-align: center; text-align: center;"></td>
100 <td style="vertical-align: center; text-align: center;"><a id="8" href ="a">8</a></td> 100 <td style="vertical-align: center; text-align: center;"><a id="8" href ="a">8</a></td>
101 <td style="vertical-align: center; text-align: center;"></td> 101 <td style="vertical-align: center; text-align: center;"></td>
102 </tr> 102 </tr>
103 </tbody> 103 </tbody>
104 </table> 104 </table>
105 <div id="console"></div> 105 <div id="console"></div>
106 </body> 106 </body>
107 </html> 107 </html>
108 108
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698