Chromium Code Reviews

Side by Side Diff: LayoutTests/fast/scroll-behavior/main-frame-interrupted-scroll.html

Issue 774203003: Update Window API for CSSOM smooth scrolling to match the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expected results Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #content { 5 #content {
6 width: 1000px; 6 width: 1000px;
7 height: 10000px; 7 height: 10000px;
8 background-color: blue; 8 background-color: blue;
9 } 9 }
10 </style> 10 </style>
11 <script src="../../resources/testharness.js"></script> 11 <script src="../../resources/testharness.js"></script>
12 <script src="../../resources/testharnessreport.js"></script> 12 <script src="../../resources/testharnessreport.js"></script>
13 <script src="resources/scroll-interruption-test.js"></script> 13 <script src="resources/scroll-interruption-test.js"></script>
14 <script type="text/javascript"> 14 <script type="text/javascript">
15 function jsScroll(y) { 15 function jsScroll(y) {
16 var currentX = document.documentElement.scrollTop; 16 window.scrollTo({top: y, behavior: 'smooth'});
17 window.scrollTo(currentX, y, {behavior: 'smooth'});
18 } 17 }
19 18
20 function doTest() { 19 function doTest() {
21 const targets = {y_min: 40, y_mid: 3500, y_max: 7000}; 20 const targets = {y_min: 40, y_mid: 3500, y_max: 7000};
22 const innerPoint = {x: 100, y: 100}; 21 const innerPoint = {x: 100, y: 100};
23 var scrollInterruptionTest = new SmoothScrollInterruptionTest(document.doc umentElement, 22 var scrollInterruptionTest = new SmoothScrollInterruptionTest(document.doc umentElement,
24 innerPoint, 23 innerPoint,
25 targets, 24 targets,
26 jsScroll); 25 jsScroll);
27 scrollInterruptionTest.run(); 26 scrollInterruptionTest.run();
28 } 27 }
29 28
30 window.addEventListener('load', doTest, false); 29 window.addEventListener('load', doTest, false);
31 </script> 30 </script>
32 </head> 31 </head>
33 32
34 <body> 33 <body>
35 <p>Test that interrupting a smooth scroll on the main frame works with both sc roll behaviors and with input</p> 34 <p>Test that interrupting a smooth scroll on the main frame works with both sc roll behaviors and with input</p>
36 <div id="content"></div> 35 <div id="content"></div>
37 </body> 36 </body>
38 </html> 37 </html>
OLDNEW

Powered by Google App Engine