blob: fe5e0de5cdff28dc878e56b08f239f81e2c4fcbd (
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; padding: 40px; margin: 40px; color: red">
Bullet should be green.
</details>
|