mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Various zoom-related tests that spawn in new windows</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.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">
|
|
|
|
var prefs = [
|
|
// We need the APZ paint logging information
|
|
["apz.test.logging_enabled", true],
|
|
// Dropping the touch slop to 0 makes the tests easier to write because
|
|
// we can just do a one-pixel drag to get over the pan threshold rather
|
|
// than having to hard-code some larger value.
|
|
["apz.touch_start_tolerance", "0.0"],
|
|
// The subtests in this test do touch-drags to pan the page, but we don't
|
|
// want those pans to turn into fling animations, so we increase the
|
|
// fling-stop threshold velocity to absurdly high.
|
|
["apz.fling_stopped_threshold", "10000"],
|
|
// The helper_bug1280013's div gets a displayport on scroll, but if the
|
|
// test takes too long the displayport can expire before we read the value
|
|
// out of the test. So we disable displayport expiry for these tests.
|
|
["apz.displayport_expiry_ms", 0],
|
|
];
|
|
|
|
var subtests = [
|
|
{'file': 'helper_bug1280013.html', 'prefs': prefs},
|
|
];
|
|
|
|
if (isApzEnabled()) {
|
|
SimpleTest.waitForExplicitFinish();
|
|
window.onload = function() {
|
|
runSubtestsSeriallyInFreshWindows(subtests)
|
|
.then(SimpleTest.finish);
|
|
};
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|