summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-dynamic.html
blob: 074f0b3c1b0bbba7dc35722d32f1c55a492e22d8 (plain)
1
2
3
4
5
6
7
8
9
10
<!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>