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

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference: ::marker pseudo elements styled with 'content' property</title>
<link rel="author" title="Oriol Brufau" href="mailto:[email protected]">
<style>
ol {
  list-style-type: "[marker]";
  text-decoration: underline;
  padding-left: 100px;
}
.inside {
  list-style-position: inside;
}
</style>
<ol>
  <li class="outside">outside</li>
  <li class="inside">inside</li>
</ol>