tenfourfox/editor/reftests/spellcheck-input-attr-dynamic-override-inherit.html

12 lines
265 B
HTML
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body onload="init()" spellcheck="false">
<input class="spell-checked" type="text" value="blahblahblah">
<script>
function init() {
document.body.setAttribute("spellcheck", "true");
}
</script>
</body>
</html>