summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/bug1634543-1-ref.html
blob: a65a6b4a31056b29888d1fde8a4a64183ed7dcd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html class="reftest-wait">
<title>Reference</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
  div {
    outline: 3px solid blue;
  }
</style>
<div contenteditable="true" spellcheck="false"><br></div>
<script>
SimpleTest.waitForFocus(function() {
  document.querySelector('[contenteditable="true"]').focus();
  requestAnimationFrame(function() {
    requestAnimationFrame(function() {
      document.documentElement.removeAttribute("class");
    });
  });
});
</script>