tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

make-editable-div-inline-and-set-contenteditable-of-input-to-false.html (502B)


      1 <!DOCTYPE html>
      2 <html class="test-wait">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Testcase for bug 650572 of Mozilla</title>
      6 <script>
      7 function boom()
      8 {
      9  document.documentElement.offsetHeight;
     10  document.body.focus();
     11  document.querySelector("div").style.display = "inline";
     12  document.querySelector("input").contentEditable = "false";
     13  document.documentElement.removeAttribute("class");
     14 }
     15 </script>
     16 </head>
     17 <body contenteditable="true" onload="setTimeout(boom, 200);"><div><input></div></body>
     18 </html>