summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/387876-3b.html
blob: 3f29a9c18d22004d2e0a7e2be3d05380dff48887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<html class="reftest-wait">
<head>
 <script>
  function tweak() {
    document.getElementById('p').textContent = 'below';
    document.documentElement.className = '';
  }
 </script>
</head>
<body onload="tweak()">
 <div style="column-width: 60px; height: 60px; background: yellow;">
   title
   <p id="p" style="background: lightgreen">
     line
     break
     [middle]
     line
     break
     [middle]
     line
     break
     [middle]
     line
     break
   </p>
 </div>
</body>
</html>