https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ba36715b3b9584b7746306c7709f0530c6f643a5 authored by ffxbld on 06 September 2018, 06:31:42 UTC
No bug, Automated blocklist update from host bld-linux64-spot-302 - a=blocklist-update
Tip revision: ba36715
bug1259949-2.html
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
    <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
    <meta charset="utf-8">
    <title>Testcase #2 for bug 1259949</title>
    <script>
        function test1() {
          document.body.offsetHeight;
          document.documentElement.removeAttribute("class");
        }
        function runTests() {
          var pre = document.querySelector('pre');
          window.getSelection().collapse(pre, 1/*after the text*/)
          pre.focus();
          document.body.offsetHeight;
        }
    </script>
</head>
<body onload="runTests()">

<pre contenteditable tabindex=1 onfocus="test1()" spellcheck="false">abcdef
<br></pre>

<script>
SimpleTest.waitForFocus(runTests);
</script>
</body>
</html>
back to top