mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
718 B
HTML
24 lines
718 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
body { font-family: sans-serif; }
|
|
</style>
|
|
<script>
|
|
function runTest() {
|
|
document.getElementById('r').appendChild(document.createTextNode('x'));
|
|
document.getElementById('r').appendChild(document.createTextNode('x'));
|
|
document.getElementById('r').appendChild(document.createTextNode('x'));
|
|
document.body.normalize();
|
|
document.getElementById('t').style.display = "";
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="runTest()">
|
|
|
|
<table style="display: none" border=1 id="t"><tbody><tr id="r"><td id="c">TD</td></tr></tbody></table>
|
|
|
|
</body>
|
|
</html>
|