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