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

Side by Side Diff: LayoutTests/fast/events/touch/gesture/touch-gesture-scroll-iframe-not-propagated.html

Issue 891523002: ScrollTopLeftInterop should not be marked experimental (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates 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 <script src="../../../../resources/js-test.js"></script> 4 <script src="../../../../resources/js-test.js"></script>
5 <script src="resources/gesture-helpers.js"></script> 5 <script src="resources/gesture-helpers.js"></script>
6 <style type="text/css"> 6 <style type="text/css">
7 7
8 ::-webkit-scrollbar { 8 ::-webkit-scrollbar {
9 width: 0px; 9 width: 0px;
10 height: 0px; 10 height: 0px;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 debug("first gesture"); 73 debug("first gesture");
74 eventSender.gestureScrollBegin(10, 72); 74 eventSender.gestureScrollBegin(10, 72);
75 // Prevent scroll to propagate by passing true for third parameter 75 // Prevent scroll to propagate by passing true for third parameter
76 eventSender.gestureScrollUpdate(0, -700, true); 76 eventSender.gestureScrollUpdate(0, -700, true);
77 eventSender.gestureScrollUpdate(0, -100, true); 77 eventSender.gestureScrollUpdate(0, -100, true);
78 eventSender.gestureScrollUpdate(0, -70, true); 78 eventSender.gestureScrollUpdate(0, -70, true);
79 eventSender.gestureScrollUpdate(0, -10, true); 79 eventSender.gestureScrollUpdate(0, -10, true);
80 eventSender.gestureScrollEnd(0, 0); 80 eventSender.gestureScrollEnd(0, 0);
81 81
82 // Make sure the actual iframe got fully scrolled 82 // Make sure the actual iframe got fully scrolled
83 shouldBe('iframeBody.scrollHeight - iframeDocumentElement.scrollTop', 'ifram e.clientHeight'); 83 shouldBe('iframeBody.scrollHeight - iframeBody.scrollTop', 'iframe.clientHei ght');
84 84
85 // Wait for layout. 85 // Wait for layout.
86 checkScrollOffset(); 86 checkScrollOffset();
87 } 87 }
88 88
89 if (window.testRunner) 89 if (window.testRunner)
90 testRunner.waitUntilDone(); 90 testRunner.waitUntilDone();
91 91
92 function runTest() 92 function runTest()
93 { 93 {
(...skipping 14 matching lines...) Expand all
108 } else { 108 } else {
109 debug("This test requires DumpRenderTree. Gesture-scroll the page to va lidate the implementation."); 109 debug("This test requires DumpRenderTree. Gesture-scroll the page to va lidate the implementation.");
110 } 110 }
111 } 111 }
112 </script> 112 </script>
113 113
114 114
115 115
116 </body> 116 </body>
117 </html> 117 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698