mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
25 lines
409 B
HTML
25 lines
409 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<style>
|
|
body::before {
|
|
content:"Before";
|
|
border:inherit;
|
|
}
|
|
.cl::after {
|
|
display:block;
|
|
content:"After";
|
|
}
|
|
</style>
|
|
<script>
|
|
function fixupDOM() {
|
|
document.body.setAttribute("style", "border:2px solid red;");
|
|
document.body.className = "cl";
|
|
document.documentElement.className = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="fixupDOM()">
|
|
</body>
|
|
</html>
|