summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1375315-2.html
blob: 6ed35961fdff89be4f17e2f20b0cc480dd6e648f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<script>
  onload = function() {
    var height = document.body.offsetHeight; // Flush layout
    document.querySelector("li").style.color = "green";
  }
</script>
<ul>
  <li style="column-count: 2; width: 50px; list-style-position: inside; color: red">
    Bullet should be green.
  </li>
</ul>