mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
12 lines
261 B
HTML
12 lines
261 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body onload="init()">
|
||
|
<input type="text" spellcheck="false" value="blahblahblah">
|
||
|
<script>
|
||
|
function init() {
|
||
|
document.querySelector("input").setAttribute("spellcheck", "true");
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|