wpt / css / css-content / quotes-first-line.html

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

/css/css-content/quotes-first-line.html

<!doctype html>
<meta charset=utf-8>
<title>CSS-content test: first line with quotes honor color</title>
<link rel="author" title="Minseong Kim" href="jja08111@gmail.com">
<link rel="match" href="reference/quotes-first-line-ref.html">
<link rel=help href="https://drafts.csswg.org/css-content/#quotes">
<style>
body { font: 32px serif; }
div::first-line { color: red; }
</style>
<p>Test passes if color of quote marks matches the text color on each line.</p>
<div>
  This is <q>quoted</q>
  <br>
  This is <q>quoted</q>
</div>

/css/css-content/reference/quotes-first-line-ref.html

<!doctype html>
<meta charset=utf-8>
<title>CSS-content test: first line with quotes honor color</title>
<link rel="author" title="Minseong Kim" href="jja08111@gmail.com">
<style>
body { font: 32px serif; }
.first-line { color: red; }
</style>
<p>Test passes if color of quote marks matches the text color on each line.</p>
<div>
  <span class="first-line">This is <q>quoted</q></span>
  <br>
  This is <q>quoted</q>
</div>