https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9e52386c577833470c33525a6804de01f0a41da2 authored by ffxbld on 07 April 2016, 23:49:03 UTC
Added FENNEC_45_0_2_RELEASE FENNEC_45_0_2_BUILD1 tag(s) for changeset de8c6696c6f6. DONTBUILD CLOSED TREE a=release
Tip revision: 9e52386
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