mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
18 lines
363 B
HTML
18 lines
363 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; margin-top: 50px;">
|
|
</div>
|
|
<div>Bar</div>
|
|
</body>
|
|
</html>
|