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

Unified Diff: LayoutTests/fast/scroll-behavior/scroll-customization/scrollstate-simple.html

Issue 850443002: Scroll Customization Prototype (Not for review, WIP) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase / cleanup / minor bug fixes 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/scroll-behavior/scroll-customization/scrollstate-simple.html
diff --git a/LayoutTests/fast/scroll-behavior/scroll-customization/scrollstate-simple.html b/LayoutTests/fast/scroll-behavior/scroll-customization/scrollstate-simple.html
new file mode 100644
index 0000000000000000000000000000000000000000..b9a2173a8f4bafd6f04fe82e3ca720c53822adad
--- /dev/null
+++ b/LayoutTests/fast/scroll-behavior/scroll-customization/scrollstate-simple.html
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8">
+<title>ScrollState constructor behaves correctly</title>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+</head>
+<body>
+<script>
+
+if (!window.internals || !window.internals.runtimeFlags.scrollCustomizationEnabled) {
+ console.log("These tests only work with window.internals exposed, " +
+ "and require scroll customization.");
+ done();
+}
+
+test(function() {
+ var scrollState = new ScrollState();
+ assert_equals(scrollState.deltaX, 0);
+ assert_equals(scrollState.deltaY, 0);
+ assert_equals(scrollState.deltaGranularity, 0);
+ assert_equals(scrollState.velocityX, 0);
+ assert_equals(scrollState.velocityY, 0);
+ assert_equals(scrollState.inInertialPhase, false);
+ assert_equals(scrollState.isEnding, false);
+ assert_equals(scrollState.fromUserInput, false);
+ assert_equals(scrollState.shouldPropagate, true);
+}, "Empty constructor behaves correctly.");
+
+test(function() {
+ var deltaX = 12.5;
+ var deltaY = 14.9;
+ var deltaGranularity = 148.3;
+ var velocityX = 23.7;
+ var velocityY = 2.5;
+ var inInertialPhase = true;
+ var isEnding = true;
+ var scrollState = new ScrollState(deltaX, deltaY, deltaGranularity, velocityX,
+ velocityY, inInertialPhase, isEnding);
+ assert_equals(scrollState.deltaX, deltaX);
+ assert_equals(scrollState.deltaY, deltaY);
+ assert_equals(scrollState.deltaGranularity, deltaGranularity);
+ assert_equals(scrollState.velocityX, velocityX);
+ assert_equals(scrollState.velocityY, velocityY);
+ assert_equals(scrollState.inInertialPhase, inInertialPhase);
+ assert_equals(scrollState.isEnding, isEnding);
+ assert_equals(scrollState.fromUserInput, false);
+ assert_equals(scrollState.shouldPropagate, true);
+}, "Constructor behaves correctly.");
+
+test(function() {
+ var scrollState = new ScrollState();
+ scrollState.fromUserInput = true;
+ assert_equals(scrollState.fromUserInput, false);
+}, "fromUserInput is read only");
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698