OLD | NEW |
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 Loading... |
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 |
OLD | NEW |