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

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

Issue 882153004: Re-enable main-frame and subframe CSSOM smooth scroll layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use nullptr instead of 0 Created 5 years, 10 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>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ]; 61 ];
62 62
63 function doTest() 63 function doTest()
64 { 64 {
65 var testCases = []; 65 var testCases = [];
66 for (var i = 0; i < testScrolls.length; i++) { 66 for (var i = 0; i < testScrolls.length; i++) {
67 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); 67 testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
68 } 68 }
69 69
70 var subframe = document.getElementById("subframe"); 70 var subframe = document.getElementById("subframe");
71 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.d ocumentElement, 71 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.b ody,
72 subframe.contentDocument, 72 subframe.contentDocument,
73 testCases, 73 testCases,
74 getEndPosition, 74 getEndPosition,
75 jsScroll); 75 jsScroll);
76 scrollBehaviorTest.run(); 76 scrollBehaviorTest.run();
77 } 77 }
78 78
79 window.addEventListener('load', doTest, false); 79 window.addEventListener('load', doTest, false);
80 </script> 80 </script>
81 </head> 81 </head>
82 82
83 <body> 83 <body>
84 <p>Test that calling scrollTo on a subframe works with both scroll behaviors</ p> 84 <p>Test that calling scrollTo on a subframe works with both scroll behaviors</ p>
85 <iframe id="subframe" src="resources/large-subframe.html"></iframe> 85 <iframe id="subframe" src="resources/large-subframe.html"></iframe>
86 </body> 86 </body>
87 </html> 87 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/scroll-behavior/subframe-scrollLeft.html ('k') | LayoutTests/fast/scroll-behavior/subframe-scrollTop.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698