| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <!-- | 2 <!-- |
| 3 This test ensures the traversal correctness of spatial navigation: | 3 This test ensures the traversal correctness of spatial navigation: |
| 4 focusable elements accessible, including zero-margin content, should be | 4 focusable elements accessible, including zero-margin content, should be |
| 5 accessible. | 5 accessible. |
| 6 --> | 6 --> |
| 7 <head> | 7 <head> |
| 8 <style type="text/css"> | 8 <style type="text/css"> |
| 9 body { | 9 body { |
| 10 background:none repeat scroll 0 0 #FFFFFF; | 10 background:none repeat scroll 0 0 #FFFFFF; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 | 47 |
| 48 function testCompleted() | 48 function testCompleted() |
| 49 { | 49 { |
| 50 if (window.testRunner) | 50 if (window.testRunner) |
| 51 testRunner.notifyDone(); | 51 testRunner.notifyDone(); |
| 52 } | 52 } |
| 53 | 53 |
| 54 window.onload = runTest; | 54 window.onload = runTest; |
| 55 | 55 |
| 56 </script> | 56 </script> |
| 57 <script src="js/resources/js-test-post.js"></script> | |
| 58 </head> | 57 </head> |
| 59 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> | 58 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> |
| 60 <span> | 59 <span> |
| 61 <div> | 60 <div> |
| 62 <nobr> | 61 <nobr> |
| 63 <a href="#" id="start"> test1 </a> | 62 <a href="#" id="start"> test1 </a> |
| 64 <a href="#" id="end"> test2 </a> | 63 <a href="#" id="end"> test2 </a> |
| 65 </nobr> | 64 </nobr> |
| 66 </div> | 65 </div> |
| 67 </span> | 66 </span> |
| 68 <div id="console"></div> | 67 <div id="console"></div> |
| 69 </body> | 68 </body> |
| 70 </html> | 69 </html> |
| OLD | NEW |