summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/393655-5.html
blob: e587de9ebb284cad8a2e1ab9f25ad228fb391c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html class="reftest-wait">
<head>
  <script>
    function tweak() {
      var editMe = document.getElementById('editMe');
      editMe.innerHTML="a";
      document.documentElement.className = "";
    }
  </script>
</head>
<body onload="tweak()">
  Foo
  <div id="editMe" style="margin-bottom: 50px; margin-top: 50px;">
  </div>
  <div>Bar</div>
</body>
</html>