mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|