mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
376 B
HTML
22 lines
376 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
|
|
|
<style id="sty">
|
|
html::before {
|
|
content: "before text";
|
|
float: right;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
var sty = document.getElementById("sty");
|
|
sty.appendChild(document.createTextNode(" "));
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
setTimeout(boom, 30);
|
|
</script>
|
|
|
|
</html>
|