blob: 9fc5e427c85fea913bcaef701c4f0bc30e8b9790 (
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="overflow: hidden; list-style-position: inside; color: red">
Bullet should be green.
</li>
</ul>
|