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

Side by Side Diff: LayoutTests/fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.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 correctness the following Spatial Navigation 3 This test ensures the correctness the following Spatial Navigation
4 (SNav) algorithm features. 4 (SNav) algorithm features.
5 5
6 1) There is no unit overflow in the Spatial Navigation algorithm while 6 1) There is no unit overflow in the Spatial Navigation algorithm while
7 calculating the best node candidate to move focus to. To test that this 7 calculating the best node candidate to move focus to. To test that this
8 page positions some elements 10000000 pixels far from each other (distanc e 8 page positions some elements 10000000 pixels far from each other (distanc e
9 that can considered large enough for most of the Web Pages on the 9 that can considered large enough for most of the Web Pages on the
10 Internet). 10 Internet).
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 function step2Completed() 82 function step2Completed()
83 { 83 {
84 if (window.testRunner) 84 if (window.testRunner)
85 testRunner.notifyDone(); 85 testRunner.notifyDone();
86 } 86 }
87 87
88 window.onload = runTest; 88 window.onload = runTest;
89 89
90 </script> 90 </script>
91 <script src="js/resources/js-test-post.js"></script>
92 </head> 91 </head>
93 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml"> 92 <body id="some-content" xmlns="http://www.w3.org/1999/xhtml">
94 <a id="start" href="a">Start</a> 93 <a id="start" href="a">Start</a>
95 <div style='margin-top:100000000px'> 94 <div style='margin-top:100000000px'>
96 <a id="end" href="a">End</a> 95 <a id="end" href="a">End</a>
97 </div> 96 </div>
98 <div id="console"></div> 97 <div id="console"></div>
99 </body> 98 </body>
100 </html> 99 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698