summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/marker-display-dynamic-001.html
blob: c06da7ca803455559a7a12b915d9083b32106cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: ::marker is created dynamically properly</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="author" title="Mozilla" href="https://mozilla.org">
<link rel="match" href="marker-color-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1538589">
<style>
li {
  color: green;
  font-size: 40px;
  list-style-type: square;
}
::marker {
  display: none;
}
.tweak::marker {
  display: initial;
}
</style>
<ol>
    <li><!-- The list marker should be a green square.--></li>
</ol>
<script>
  onload = function() {
    let li = document.querySelector("li");
    li.offsetTop;
    li.classList.add("tweak");
  }
</script>