https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 284f5c756bb7b0f967dc6ec76c7ddbf856d3bc07 authored by Carsten "Tomcat" Book on 14 December 2015, 07:24:17 UTC
merge mozilla-aurora to b2g44 a=merge
Tip revision: 284f5c7
338427-3.html
<!DOCTYPE html>
<html class="reftest-wait">
<script>
function init() {
    var editor = document.getElementById('editor');
    // invalid language will default to en-US
    editor.setAttribute('lang', 'testing-XX');
    editor.addEventListener("focus", function() {
        window.setTimeout(function() {
            document.documentElement.className = '';
        }, 0);
    }, false);
    editor.focus();
}
</script>
<body onload="init()">
    <textarea id="editor" lang="en-US">good possible word</textarea>
</body>
</html>
back to top