mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
17 lines
338 B
HTML
17 lines
338 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<style>
|
||
|
div { background: red; height: 3em; }
|
||
|
div:empty { background: lime; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div style="display: none"></div>
|
||
|
<script>
|
||
|
var div = document.getElementsByTagName("div")[0];
|
||
|
div.appendChild(document.createTextNode("aa"));
|
||
|
div.style.display = "";
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|