blob: 9747643cec73a825f9e4bcdc13abe179f41225c5 (
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="-moz-column-width: 60px; height: 60px; background: yellow;">
title
<p id="p" style="background: lightgreen">
line
break
</p>
</div>
</body>
</html>
|