mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
395 B
HTML
20 lines
395 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
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|