summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-underline-offset-zero-position.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-text-decor/text-underline-offset-zero-position.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-text-decor/text-underline-offset-zero-position.html')
-rw-r--r--testing/web-platform/tests/css/css-text-decor/text-underline-offset-zero-position.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text-decor/text-underline-offset-zero-position.html b/testing/web-platform/tests/css/css-text-decor/text-underline-offset-zero-position.html
new file mode 100644
index 0000000000..ed1c71c2f2
--- /dev/null
+++ b/testing/web-platform/tests/css/css-text-decor/text-underline-offset-zero-position.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>text-underline-offset test case</title>
+ <meta name="assert" content="zero-position for text-underline-offset is at the alphabetic baseline">
+ <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">
+ <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#line-offset-zero">
+ <link rel="match" href="reference/text-underline-offset-zero-position-ref.html">
+ <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
+ <style>
+ .green {
+ color: green;
+ }
+ .red {
+ color: red;
+ }
+ #test {
+ font: 100px Ahem;
+ color: green;
+ -webkit-text-decoration-skip: none;
+ text-decoration-skip-ink: none;
+ }
+ u {
+ text-decoration: underline;
+ text-decoration-color: red;
+ text-decoration-thickness: 20px;
+ text-underline-position: auto;
+ text-underline-offset: 0px; /* at the alphabetic baseline, per spec */
+ }
+ </style>
+</head>
+<body>
+ <p class="instructions">Test passes if there is a <span class=green>green</span> line and <span class=red>no red</span>.</p>
+ <div id="test">
+ <!-- At 100px, the "p" in Ahem will be a box with its top at the baseline,
+ and its bottom 20px (0.2em) below the baseline. -->
+ <u>ppp</u>
+ </div>
+</body>
+</html>