summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/hit-test-transformed-inline.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/css/css-break/hit-test-transformed-inline.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/css/css-break/hit-test-transformed-inline.html')
-rw-r--r--testing/web-platform/tests/css/css-break/hit-test-transformed-inline.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-break/hit-test-transformed-inline.html b/testing/web-platform/tests/css/css-break/hit-test-transformed-inline.html
new file mode 100644
index 0000000000..239b2b2395
--- /dev/null
+++ b/testing/web-platform/tests/css/css-break/hit-test-transformed-inline.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
+<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1308124">
+<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
+<style>
+ body {
+ margin: 0;
+ }
+ #mc {
+ columns: 2;
+ gap: 0;
+ column-fill: auto;
+ width: 600px;
+ height: 20px;
+ line-height: 20px;
+ font: 20px/1 ahem;
+ }
+</style>
+<div id="mc">
+ <span id="span" style="backface-visibility:hidden; filter:blur(1px);">
+ x<child id="firstchild">x</child><br>
+ <child id="secondchild">x</child>x
+ </span>
+</div>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ test(()=> {
+ assert_equals(document.elementFromPoint(10, 10).id, "span");
+ }, "First x");
+
+ test(()=> {
+ assert_equals(document.elementFromPoint(30, 10).id, "firstchild");
+ }, "First child");
+
+ test(()=> {
+ assert_equals(document.elementFromPoint(310, 10).id, "secondchild");
+ }, "Second child");
+
+ test(()=> {
+ assert_equals(document.elementFromPoint(330, 10).id, "span");
+ }, "Last x");
+</script>