summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html')
-rw-r--r--gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html49
1 files changed, 49 insertions, 0 deletions
diff --git a/gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html b/gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html
new file mode 100644
index 0000000000..2e75f45fc8
--- /dev/null
+++ b/gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html
@@ -0,0 +1,49 @@
+<!DOCTYPE HTML>
+<html>
+<!--
+https://bugzilla.mozilla.org/show_bug.cgi?id=1151663
+-->
+
+<head>
+ <meta charset="utf-8">
+ <title>Tests related to scrollframe activation</title>
+ <script src="/tests/SimpleTest/SimpleTest.js"></script>
+ <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
+ <script type="application/javascript" src="apz_test_utils.js"></script>
+ <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
+ <script type="application/javascript">
+ if (isApzEnabled()) {
+ SimpleTest.waitForExplicitFinish();
+
+ let prefs = [
+ ["apz.test.logging_enabled", true]
+ ];
+
+ var subtests = [
+ { file: "helper_scrollframe_activation_on_load.html", prefs },
+ { file: "helper_bug982141.html", prefs },
+ ];
+
+ if (getPlatform() != "android") {
+ // promiseMoveMouseAndScrollWheelOver in helper_check_dp_size doesn't
+ // work on android. Trying to use promiseNativeTouchDrag on android
+ // leads to very large display ports (larger than even the bad case
+ // below), not sure why.
+ subtests.push(
+ { file: "helper_check_dp_size.html", prefs }
+ );
+ }
+
+ window.onload = function() {
+ runSubtestsSeriallyInFreshWindows(subtests)
+ .then(SimpleTest.finish, SimpleTest.finishWithFailure);
+ };
+ }
+ </script>
+</head>
+
+<body>
+ <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151663">Mozilla Bug 1151663</a>
+</body>
+
+</html>