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