OLD | NEW |
1 <html> | 1 <html> |
2 <!-- | 2 <!-- |
3 This test ensures the correctness of Spatial Navigation (SNav) algorithm ove
r multiple select element. | 3 This test ensures the correctness of Spatial Navigation (SNav) algorithm ove
r multiple 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. |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 | 99 |
100 function testCompleted() | 100 function testCompleted() |
101 { | 101 { |
102 if (window.testRunner) | 102 if (window.testRunner) |
103 testRunner.notifyDone(); | 103 testRunner.notifyDone(); |
104 } | 104 } |
105 | 105 |
106 window.onload = runTest; | 106 window.onload = runTest; |
107 | 107 |
108 </script> | 108 </script> |
109 <script src="js/resources/js-test-post.js"></script> | |
110 </head> | 109 </head> |
111 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> | 110 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> |
112 <table style="text-align: left; width: 100%; margin-left: auto; margin-right
: auto;" border="1" cellpadding="2" cellspacing="1"> | 111 <table style="text-align: left; width: 100%; margin-left: auto; margin-right
: auto;" border="1" cellpadding="2" cellspacing="1"> |
113 <tbody> | 112 <tbody> |
114 <tr> | 113 <tr> |
115 <td style="vertical-align: top; text-align: center;"></td> | 114 <td style="vertical-align: top; text-align: center;"></td> |
116 <td style="vertical-align: top; text-align: center;"><a id="2" href="a
">2</a></td> | 115 <td style="vertical-align: top; text-align: center;"><a id="2" href="a
">2</a></td> |
117 <td style="vertical-align: top; text-align: center;"></td> | 116 <td style="vertical-align: top; text-align: center;"></td> |
118 </tr> | 117 </tr> |
119 <tr> | 118 <tr> |
120 <td style="vertical-align: top; text-align: center;"><a id="4" href="a
">4</a></td> | 119 <td style="vertical-align: top; text-align: center;"><a id="4" href="a
">4</a></td> |
121 <td style="vertical-align: top; text-align: center;"><select id="start
" multiple><option>1</option><option>2</option><option disabled>3</option><optio
n>4</option></select></td> | 120 <td style="vertical-align: top; text-align: center;"><select id="start
" multiple><option>1</option><option>2</option><option disabled>3</option><optio
n>4</option></select></td> |
122 <td style="vertical-align: top; text-align: center;"><a id="6" href="a
">6</a></td> | 121 <td style="vertical-align: top; text-align: center;"><a id="6" href="a
">6</a></td> |
123 </tr> | 122 </tr> |
124 <tr> | 123 <tr> |
125 <td style="vertical-align: top; text-align: center;"></td> | 124 <td style="vertical-align: top; text-align: center;"></td> |
126 <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> |
127 <td style="vertical-align: top; text-align: center;"></td> | 126 <td style="vertical-align: top; text-align: center;"></td> |
128 </tr> | 127 </tr> |
129 </tbody> | 128 </tbody> |
130 </table> | 129 </table> |
131 <div id="console"></div> | 130 <div id="console"></div> |
132 </body> | 131 </body> |
133 </html> | 132 </html> |
134 | 133 |
OLD | NEW |