tenfourfox/editor/reftests/spellcheck-input-property-dynamic-inherit.html

12 lines
229 B
HTML
Raw Normal View History

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