Revision 9c3dd5dd9c1777f3b956d4044e4b944ef749e2f5 authored by Ben Hearsum on 29 October 2012, 18:16:28 UTC, committed by Ben Hearsum on 29 October 2012, 18:16:28 UTC
1 parent 02d10a0
Raw File
passwd-4.html
<!DOCTYPE html>
<!--
Make sure that focusing a password text element does not
cause a non-breaking space character to show up.
-->
<html class="reftest-wait">
<body onload="loaded()">
    <input type="password">
    <script>
      function loaded() {
        var i = document.getElementsByTagName("input")[0];
        i.focus();
        i.value += "abcdef";
        i.blur();
        document.documentElement.className = "";
      }
    </script>
</body>
</html>
back to top