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

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

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

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Decoration 4: text-decoration-inset percentage with b-d-b clone</title>
<link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-inset-property">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/8403">
<link rel="match" href="reference/text-decoration-inset-029-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
  body { background: white; color: black; font: 20px/2 Ahem; }
  p {
    text-decoration-line: underline;
    text-decoration-color: blue;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    text-decoration-inset: 20% 40%;
    box-decoration-break: clone;
  }
</style>

<div style="width: 100px;">
  <p>abcde fghij</p>
</div>

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

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Text Decoration 4 reference: text-decoration-inset percentage with b-d-b clone</title>
<link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-inset-property">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
  body { background: white; color: black; font: 20px/2 Ahem; }
  u {
    text-decoration-line: underline;
    text-decoration-color: blue;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
</style>

<div style="width: 100px;">
  <p>a<u>bc</u>de f<u>gh</u>ij</p>
</div>