summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/387876-1.html
blob: 20c84bcf54b8b759fdb8994df4bff8d8796c37f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html class="reftest-wait">
<head>
<title>Bug 387876 Test Case 1</title>
<script>
 function tweak() {
   document.getElementById('weirdDiv').textContent += 'b';
   document.documentElement.className = '';
 }
</script>
</head>
<body onload="setTimeout(tweak, 10);">
  The yellow box should say 'ab'.
  <div style="column-width: 30px;
              column-gap: 0px;
              height: 0px;
             ">
    <div id="weirdDiv" 
         style="background: yellow;">a</div>
    z
  </div>
</body>
</html>