summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-morphs-into-hidden.html
blob: 98b954855f1f484b74f05672601fde718de09c0c (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<meta charset="utf-8" />
<title>INPUT motphs into @type="hidden"</title>

<input />

<script>
  var input = document.getElementsByTagName("input")[0];
  input.type = "hidden";
</script>