Mypal/editor/reftests/spellcheck-input-attr-dynam...

12 lines
246 B
HTML

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