ladybird/Tests/LibWeb/Layout/input/misc/set-display-null.html

9 lines
266 B
HTML
Raw Normal View History

<!DOCTYPE html><style>
#box {
width: 100px;
height: 100px;
background-color: magenta;
}
</style><body><div id="box"></div></body><script>
document.getElementById("box").style.display = "none";
document.getElementById("box").style.display = null;</script>