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

Side by Side Diff: LayoutTests/fast/spatial-navigation/snav-table-traversal.html

Issue 48903019: Delete js-test-post.js. (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 basic table traversal correctness of 3 This test ensures the basic table traversal correctness of
4 Spatial Navigation (SNav) algorithm: focusable elements in a 4 Spatial Navigation (SNav) algorithm: focusable elements in a
5 <table> should be accessible. 5 <table> should be accessible.
6 6
7 * Pre-conditions: 7 * Pre-conditions:
8 1) DRT support for SNav enable/disable. 8 1) DRT support for SNav enable/disable.
9 9
10 * Navigation steps: 10 * Navigation steps:
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 function testCompleted() 50 function testCompleted()
51 { 51 {
52 if (window.testRunner) 52 if (window.testRunner)
53 testRunner.notifyDone(); 53 testRunner.notifyDone();
54 } 54 }
55 55
56 window.onload = runTest; 56 window.onload = runTest;
57 57
58 </script> 58 </script>
59 <script src="js/resources/js-test-post.js"></script>
60 </head> 59 </head>
61 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> 60 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
62 <table style="text-align: left; width: 100%; margin-left: auto; margin-right : auto;" border="1" cellpadding="2" cellspacing="1"> 61 <table style="text-align: left; width: 100%; margin-left: auto; margin-right : auto;" border="1" cellpadding="2" cellspacing="1">
63 <tbody> 62 <tbody>
64 <tr> 63 <tr>
65 <td style="vertical-align: top; text-align: center;"><a id="start" hre f="a">a</a></td> 64 <td style="vertical-align: top; text-align: center;"><a id="start" hre f="a">a</a></td>
66 <td style="vertical-align: top; text-align: center;"><a id="2" href="a ">a</a></td> 65 <td style="vertical-align: top; text-align: center;"><a id="2" href="a ">a</a></td>
67 <td style="vertical-align: top; text-align: center;"><a id="3" href="a ">a</a></td> 66 <td style="vertical-align: top; text-align: center;"><a id="3" href="a ">a</a></td>
68 </tr> 67 </tr>
69 <tr> 68 <tr>
70 <td style="vertical-align: top; text-align: center;"><a id="4" href="a ">a</a></td> 69 <td style="vertical-align: top; text-align: center;"><a id="4" href="a ">a</a></td>
71 <td style="vertical-align: top; text-align: center;"><a id="5" href="a ">a</a></td> 70 <td style="vertical-align: top; text-align: center;"><a id="5" href="a ">a</a></td>
72 <td style="vertical-align: top; text-align: center;"><a id="6" href="a ">a</a></td> 71 <td style="vertical-align: top; text-align: center;"><a id="6" href="a ">a</a></td>
73 </tr> 72 </tr>
74 <tr> 73 <tr>
75 <td style="vertical-align: top; text-align: center;"><a id="7" href="a ">a</a></td> 74 <td style="vertical-align: top; text-align: center;"><a id="7" href="a ">a</a></td>
76 <td style="vertical-align: top; text-align: center;"><a id="8" href="a ">a</a></td> 75 <td style="vertical-align: top; text-align: center;"><a id="8" href="a ">a</a></td>
77 <td style="vertical-align: top; text-align: center;"><a id="9" href="a ">a</a></td> 76 <td style="vertical-align: top; text-align: center;"><a id="9" href="a ">a</a></td>
78 </tr> 77 </tr>
79 </tbody> 78 </tbody>
80 </table> 79 </table>
81 <div style='margin-top:100px'> 80 <div style='margin-top:100px'>
82 <a id="end" href="a">End of table traversal test</a> 81 <a id="end" href="a">End of table traversal test</a>
83 </div> 82 </div>
84 <div id="console"></div> 83 <div id="console"></div>
85 </body> 84 </body>
86 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698