mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
13 lines
271 B
HTML
13 lines
271 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style id="s"></style>
|
|
<script>
|
|
function boom() { document.getElementById("s").textContent = "div { opacity: 0.5; }"; }
|
|
</script>
|
|
</head>
|
|
<body onload="document.documentElement.offsetHeight; boom();">
|
|
<div><div>X</div></div>
|
|
</body>
|
|
</html>
|