mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
11 lines
234 B
HTML
11 lines
234 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8" />
|
|
<title>display: none set dynamically</title>
|
|
|
|
<p id="hidden">Should not be visible</span>
|
|
|
|
<script>
|
|
var hidden = document.getElementById("hidden");
|
|
hidden.style.display = "none";
|
|
</script>
|