Files
UXP-Fixed/editor/reftests/spellcheck-input-attr-dynamic.html
T
2018-02-02 04:16:08 -05:00

12 lines
264 B
HTML

<!DOCTYPE html>
<html>
<body onload="init()">
<input class="spell-checked" type="text" value="blahblahblah">
<script>
function init() {
document.querySelector("input").setAttribute("spellcheck", "true");
}
</script>
</body>
</html>