summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/387876-3a.html
blob: a84cdf2a628507b45329bbc253b0d66dad4e1996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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
   </p>
 </div>
</body>
</html>