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

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

Issue 766023002: Rename 'instant' value of scroll-behavior CSS property to 'auto' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 #container { 5 #container {
6 width: 200px; 6 width: 200px;
7 height: 200px; 7 height: 200px;
8 overflow: hidden; 8 overflow: hidden;
9 } 9 }
10 10
(...skipping 17 matching lines...) Expand all
28 function jsScroll(testCase) { 28 function jsScroll(testCase) {
29 var element = document.getElementById("container"); 29 var element = document.getElementById("container");
30 if (testCase.js) { 30 if (testCase.js) {
31 element.scrollLeft = {x: testCase.x, behavior: testCase.js}; 31 element.scrollLeft = {x: testCase.x, behavior: testCase.js};
32 } else { 32 } else {
33 element.scrollLeft = testCase.x; 33 element.scrollLeft = testCase.x;
34 } 34 }
35 } 35 }
36 36
37 const testScrolls = [ 37 const testScrolls = [
38 {js: "instant", css: "instant", x: 1, y: 0}, 38 {js: "instant", css: "auto", x: 1, y: 0},
39 {js: "instant", css: "smooth", x: 2, y: 0}, 39 {js: "instant", css: "smooth", x: 2, y: 0},
40 {js: "auto", css: "instant", x: 3, y: 0}, 40 {js: "auto", css: "auto", x: 3, y: 0},
41 {js: "", css: "instant", x: 4, y: 0}, 41 {js: "", css: "auto", x: 4, y: 0},
42 {js: "smooth", css: "instant", waitForEnd: true, x: 10, y: 0}, 42 {js: "smooth", css: "auto", waitForEnd: true, x: 10, y: 0},
43 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 0}, 43 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 0},
44 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 0}, 44 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 0},
45 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 0}, 45 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 0},
46 {js: "smooth", css: "instant", waitForEnd: false, x: 4000, y: 0}, 46 {js: "smooth", css: "auto", waitForEnd: false, x: 4000, y: 0},
47 {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 0}, 47 {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 0},
48 {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 0}, 48 {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 0},
49 {js: "", css: "smooth", waitForEnd: false, x: 10, y: 0}, 49 {js: "", css: "smooth", waitForEnd: false, x: 10, y: 0},
50 ]; 50 ];
51 51
52 function doTest() 52 function doTest()
53 { 53 {
54 var testCases = []; 54 var testCases = [];
55 for (var i = 0; i < testScrolls.length; i++) { 55 for (var i = 0; i < testScrolls.length; i++) {
56 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); 56 testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
(...skipping 12 matching lines...) Expand all
69 </script> 69 </script>
70 </head> 70 </head>
71 71
72 <body> 72 <body>
73 <p>Test that setting scrollLeft on an overflow:hidden element works with both scroll behaviors</p> 73 <p>Test that setting scrollLeft on an overflow:hidden element works with both scroll behaviors</p>
74 <div id="container"> 74 <div id="container">
75 <div id="content"></div> 75 <div id="content"></div>
76 </div> 76 </div>
77 </body> 77 </body>
78 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698