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

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

Issue 134443003: Implement CSSOM Smooth Scroll API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 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
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #container {
6 width: 200px;
7 height: 200px;
8 overflow: scroll;
9 }
10
11 #content {
12 width: 7500px;
13 height: 7500px;
14 background-color: blue;
15 }
16 </style>
17 <script src="../../resources/testharness.js"></script>
18 <script src="../../resources/testharnessreport.js"></script>
19 <script src="resources/scroll-interruption-test.js"></script>
20 <script type="text/javascript">
21 function doTest()
22 {
23 const testCase = {y1: 40, y2: 4000, y3: 15};
24 const innerPoint = {x: 100, y: 100};
25 var element = document.getElementById("container");
26 runScrollInterruptionTests(element, testCase, innerPoint);
27 }
28
29 window.addEventListener('load', doTest, false);
30 </script>
31 </head>
32
33 <body>
34 <p>Test that interrupting a smooth scroll on an overflow:scroll element works with both scroll behaviors and with input</p>
35 <div id="container">
36 <div id="content"></div>
37 </div>
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698