summaryrefslogtreecommitdiffstats
path: root/layout/reftests/stylesheet-cloning/counter-style-rule-clone.html
blob: ed3ec81e743a690a4210aeabc9a0a2fe6a0de24d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<link rel="stylesheet" href="data:text/css,@counter-style a { system: fixed; symbols: A B C D; suffix: '' }">
<link rel="stylesheet" href="data:text/css,@counter-style a { system: fixed; symbols: A B C D; suffix: '' }">
<link rel="stylesheet" href="test-common.css">
<ol style="list-style-type: a">
  <li><li><li><li><li>
</ol>
<script>
  onload = function() {
    var links = document.getElementsByTagName("link");
    links[0].sheet.cssRules[0].symbols = "\u25F0 \u25F1 \u25F2 \u25F3";
  }
</script>