mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
473 B
HTML
21 lines
473 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
|
||
|
<link id="e" href="data:text/css,.ref { background-color: green; }" rel="stylesheet">
|
||
|
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.documentElement.appendChild(document.getElementById("e"));
|
||
|
document.styleSheets[0].cssRules[0];
|
||
|
// Remove reftest-wait async so we give the SheetComplete a chance to run
|
||
|
setTimeout(function() { document.documentElement.className = ""; }, 0);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<body onload="boom();"></body>
|
||
|
|
||
|
</html>
|