summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/resize-lock-input.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/fenced-frame/resize-lock-input.https.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/resize-lock-input.https.html')
-rw-r--r--testing/web-platform/tests/fenced-frame/resize-lock-input.https.html112
1 files changed, 112 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/resize-lock-input.https.html b/testing/web-platform/tests/fenced-frame/resize-lock-input.https.html
new file mode 100644
index 0000000000..c72075ac25
--- /dev/null
+++ b/testing/web-platform/tests/fenced-frame/resize-lock-input.https.html
@@ -0,0 +1,112 @@
+<!DOCTYPE html>
+ <title>Test FencedFrames Resize Lock</title>
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ <script src="/resources/testdriver.js"></script>
+ <script src="/resources/testdriver-actions.js"></script>
+ <script src="/resources/testdriver-vendor.js"></script>
+ <script src="resources/utils.js"></script>
+ <script src="/common/dispatcher/dispatcher.js"></script>
+ <script src="/common/utils.js"></script>
+
+ <body>
+
+ <script>
+ promise_test(async t => {
+ const fencedframe = attachFencedFrameContext();
+
+ // Set up the inner frame to receive mouse events.
+ await fencedframe.execute(() => {
+ window.testing_touchpoint = 'pending'
+ window.addEventListener('mousedown', async (event) => {
+ window.testing_touchpoint = event.clientX + "," + event.clientY;
+ });
+ });
+
+ let getCoordinates = async () => {
+ return fencedframe.execute(() => {
+ let point = window.testing_touchpoint;
+ window.testing_touchpoint = 'pending';
+ return point;
+ });
+ }
+
+ // Send an event to the origin of the frame.
+ for (let i = 0; i < 3; i++) {
+ await new test_driver.Actions()
+ .setContext(window)
+ .addPointer("finger1", "touch")
+ .pointerMove(10, 10, {origin: "viewport", sourceName: "finger1"})
+ .pointerDown({sourceName: "finger1"})
+ .pointerUp({sourceName: "finger1"})
+ .send();
+ }
+
+ let result = await getCoordinates();
+ assert_equals(result, "0,0", "fenced frame event before resize 1");
+
+ // The frame should be frozen at 300x150. Resize to create a 2x scale
+ // and a horizontal offset of 50px.
+ frame.width = "700";
+ frame.height = "300";
+
+ // Let the inner frame animate in order for the resize to take effect.
+ await fencedframe.execute(async () => {
+ await new Promise(resolve => requestAnimationFrame(resolve));
+ });
+
+ // The hit-test data is replicated in the browser and updated
+ // asynchronously. Wait to ensure the update has finished.
+ t.step_timeout(async () => {
+ // Now send an event to the same location. The event should be
+ // routed to the main frame.
+ let promise = new Promise((resolve, reject) => {
+ window.addEventListener('mousedown', (event) => {
+ let point = event.clientX + "," + event.clientY;
+ assert_equals(result, "10,10", "main frame event after resize");
+ });
+ });
+ for (let i = 0; i < 3; i++) {
+ await new test_driver.Actions()
+ .setContext(window)
+ .addPointer("finger1", "touch")
+ .pointerMove(10, 10, {origin: "viewport", sourceName: "finger1"})
+ .pointerDown({sourceName: "finger1"})
+ .pointerUp({sourceName: "finger1"})
+ .send();
+ }
+ await promise;
+
+ // Send an event to where the origin of the scaled frame should
+ // render.
+ for (let i = 0; i < 3; i++) {
+ await new test_driver.Actions()
+ .setContext(window)
+ .addPointer("finger1", "touch")
+ .pointerMove(60, 10, {origin: "viewport", sourceName: "finger1"})
+ .pointerDown({sourceName: "finger1"})
+ .pointerUp({sourceName: "finger1"})
+ .send();
+ }
+ result = await getCoordinates();
+ assert_equals(result, "0,0", "fenced frame event after resize 1");
+
+ // Send an event where the bottom left of the scaled frame should
+ // render.
+ for (let i = 0; i < 3; i++) {
+ await new test_driver.Actions()
+ .setContext(window)
+ .addPointer("finger1", "touch")
+ .pointerMove(660, 310, {origin: "viewport", sourceName: "finger1"})
+ .pointerDown({sourceName: "finger1"})
+ .pointerUp({sourceName: "finger1"})
+ .send();
+ }
+ result = await getCoordinates();
+ assert_equals(result, "300,150", "fenced frame event after resize 2");
+ }, 1000);
+ }, "Test Resize Lock");
+ </script>
+
+ </body>
+</html>