зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
316 B
HTML
12 строки
316 B
HTML
<!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>
|