gecko-dev/editor/reftests/spellcheck-contenteditable-...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 строки
258 B
HTML
Исходник Обычный вид История

<!DOCTYPE html>
<html>
<body onload="init()">
<div contenteditable spellcheck="true">blahblahblah</div>
<script>
function init() {
document.querySelector("div").setAttribute("spellcheck", "false");
}
</script>
</body>
</html>