summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/574898-1.html
blob: df15ae58668da3b073f969d99af06dd71e74bfb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>

function boom()
{
  var q = document.getElementById("q");
  q.spellcheck = true;
  q.setAttribute("value", "x");
  document.documentElement.className = "";
}

</script>
</head>

<body onload="boom();"><input id="q"></body>
</html>