blob: 8fa1b418b0be6e681b6f9bfc1a0c7c9269d87769 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<script>
onload = function() {
var height = document.body.offsetHeight; // Flush layout
document.querySelector("details").style.color = "green";
}
</script>
<details open
style="display: list-item; list-style-position: inside; color: red">
Bullet should be green.
</details>
|