mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
29 lines
500 B
HTML
29 lines
500 B
HTML
<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
|
|
[middle]
|
|
line
|
|
break
|
|
[middle]
|
|
line
|
|
break
|
|
[middle]
|
|
line
|
|
break
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|