chromium/third_party/blink/web_tests/external/wpt/css/css-pseudo/marker-content-023.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: ::marker pseudo elements styled with 'content' property</title>
<link rel="author" title="Oriol Brufau" href="mailto:[email protected]">
<link rel="match" href="marker-content-023-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
<link rel="help" href="https://drafts.csswg.org/css-text/#text-indent-property">
<meta name="assert" content="Checks that 'text-indent' doesn't apply nor inherit to ::marker.">
<style>
li {
  text-indent: 100px; /* Should not be inherited by ::marker */
}
::marker {
  text-indent: 100px; /* Should have no effect */
}
li > div {
  text-indent: 0;
}
.disc {
  list-style-type: disc;
}
.decimal {
  list-style-type: decimal;
}
.string {
  list-style-type: "3. ";
}
.content::marker {
  content: "4. ";
}
.rtl-marker ::marker {
  direction: rtl;
}
</style>
<ol>
  <li class="disc"><div>disc</div></li>
  <li class="decimal"><div>decimal</div></li>
  <li class="string"><div>string</div></li>
  <li class="content"><div>content</div></li>
</ol>
<ol class="rtl-marker">
  <li class="disc"><div>disc</div></li>
  <li class="decimal"><div>decimal</div></li>
  <li class="string"><div>string</div></li>
  <li class="content"><div>content</div></li>
</ol>