diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /gfx/layers/apz/test/mochitest/test_interrupted_reflow.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/layers/apz/test/mochitest/test_interrupted_reflow.html')
-rw-r--r-- | gfx/layers/apz/test/mochitest/test_interrupted_reflow.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gfx/layers/apz/test/mochitest/test_interrupted_reflow.html b/gfx/layers/apz/test/mochitest/test_interrupted_reflow.html new file mode 100644 index 0000000000..8fc72e05a5 --- /dev/null +++ b/gfx/layers/apz/test/mochitest/test_interrupted_reflow.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html> + <!-- + https://bugzilla.mozilla.org/show_bug.cgi?id=1292781 + --> + <head> + <title>Test for bug 1292781</title> + <script 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"/> + </head> + <body> +<script type="text/javascript"> +if (isApzEnabled()) { + SimpleTest.waitForExplicitFinish(); + + // Run the actual test in its own window, because it is supposed to be run + // in the top level content document to collect APZ test data up to the root + // content APZC by using nsIDOMWindowUtils.getCompositorAPZTestData which + // is not able to walk up to the root content APZC if the function gets called + // from OOP iframes. We could make it work across process boundaries, but so + // far running the test in a new top level content document would be fine. + var w = null; + window.onload = async () => { + await pushPrefs([["apz.test.logging_enabled", true], + ["apz.displayport_expiry_ms", 0]]); + + w = window.open("helper_interrupted_reflow.html", "_blank"); + }; +} + +function finishTest() { + w.close(); + SimpleTest.finish(); +} +</script> +</body> +</html> |