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

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

Issue 1133693002: Update most LayoutTests to be agnostic to scrollTopLeftInterop mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tdresser cr feedback Created 5 years, 7 months 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #subframe { 5 #subframe {
6 width: 200px; 6 width: 200px;
7 height: 200px; 7 height: 200px;
8 } 8 }
9 </style> 9 </style>
10 <script src="../../resources/testharness.js"></script> 10 <script src="../../resources/testharness.js"></script>
11 <script src="../../resources/testharnessreport.js"></script> 11 <script src="../../resources/testharnessreport.js"></script>
12 <script src="resources/scroll-interruption-test.js"></script> 12 <script src="resources/scroll-interruption-test.js"></script>
13 <script type="text/javascript"> 13 <script type="text/javascript">
14 function jsScroll(y) { 14 function jsScroll(y) {
15 var subframe = document.getElementById('subframe'); 15 var subframe = document.getElementById('subframe');
16 subframe.contentWindow.scrollTo({top: y, behavior: 'smooth'}); 16 subframe.contentWindow.scrollTo({top: y, behavior: 'smooth'});
17 } 17 }
18 18
19 function doTest() 19 function doTest()
20 { 20 {
21 const targets = {y_min: 40, y_mid: 3500, y_max: 7000}; 21 const targets = {y_min: 40, y_mid: 3500, y_max: 7000};
22 const innerPoint = {x: 100, y: 100} 22 const innerPoint = {x: 100, y: 100}
23 var subframeDocumentElement = document.getElementById('subframe').contentD ocument.body; 23 var subframeScrollingElement = document.getElementById('subframe').content Document.scrollingElement;
24 var scrollInterruptionTest = new SmoothScrollInterruptionTest(subframeDocu mentElement, 24 var scrollInterruptionTest = new SmoothScrollInterruptionTest(subframeScro llingElement,
25 innerPoint, 25 innerPoint,
26 targets, 26 targets,
27 jsScroll); 27 jsScroll);
28 scrollInterruptionTest.run(); 28 scrollInterruptionTest.run();
29 } 29 }
30 30
31 window.addEventListener('load', doTest, false); 31 window.addEventListener('load', doTest, false);
32 </script> 32 </script>
33 </head> 33 </head>
34 34
35 <body> 35 <body>
36 <p>Test that interrupting a smooth scroll on a subframe works with both scroll behaviors and with input</p> 36 <p>Test that interrupting a smooth scroll on a subframe works with both scroll behaviors and with input</p>
37 <iframe id="subframe" src="resources/large-subframe.html"></iframe> 37 <iframe id="subframe" src="resources/large-subframe.html"></iframe>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/scroll-behavior/subframe-element-scrollTo.html ('k') | LayoutTests/fast/scroll-behavior/subframe-scroll.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698