wpt / css / css-text-decor / text-decoration-inset-008.html

Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-text-decor/text-decoration-inset-008.html

<!DOCTYPE html>
<meta charset="utf-8">

<title>CSS Text Decoration 4: text-decoration-inset</title>

<link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-inset-property">
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">

<link rel="match" href="reference/text-decoration-inset-008-ref.html">

<style>
body {
  background: white;
  color: black;
  font-family: times new roman, serif;
}
div {
  position: relative;
}
h1 {
  position: absolute;
}
span {
  display: inline-block;
  position: relative;
}
u {
  text-decoration-skip-ink: none;
  text-decoration-color: black;
  text-decoration-inset: 10px;
}
</style>

<p>The underline for "quick براؤن" should be trimmed by 10px at each end, and not interrupted at the direction boundary:</p>

<div>
  <h1>
    the <u>quick براؤن</u> fox
  </h1>
</div>

/css/css-text-decor/reference/text-decoration-inset-008-ref.html

<!DOCTYPE html>
<meta charset="utf-8">

<title>CSS Text Decoration 4: text-decoration-inset</title>

<link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-inset-property">
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com">

<style>
body {
  background: white;
  color: black;
  font-family: times new roman, serif;
}
div {
  position: relative;
}
h1 {
  position: absolute;
}
span {
  display: inline-block;
  position: relative;
}
u {
  display: inline-block;
  position: absolute;
  text-decoration-skip-ink: none;
  text-decoration-color: black;
  width: calc(100% - 20px);
  text-wrap-mode: nowrap;
  overflow-x: clip;
}
</style>

<p>The underline for "quick براؤن" should be trimmed by 10px at each end, and not interrupted at the direction boundary:</p>

<div>
  <h1>
    the quick براؤن fox
  </h1>
  <h1 style="left: 10px; color: transparent">
    the <span><u>quick براؤن</u>quick براؤن</span> fox
  </h1>
</div>