Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!DOCTYPE html>
<html>
<head>
<style>
div { color: green; }
div:empty { color: red; }
</style>
<script>
window.onload = function () {
document.getElementById("x").appendChild(document.createTextNode("This should be green"));
}
</script>
</head>
<body>
<div id="x"></div>
</body>
</html>