mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
345 B
HTML
18 lines
345 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
function tweak() {
|
||
|
var editMe = document.getElementById('editMe');
|
||
|
editMe.innerHTML="a";
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="tweak()">
|
||
|
Foo
|
||
|
<div id="editMe" style="margin-bottom: 50px;">
|
||
|
</div>
|
||
|
<div>Bar</div>
|
||
|
</body>
|
||
|
</html>
|