mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
292 B
HTML
19 lines
292 B
HTML
<!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>
|