зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
473 B
HTML
21 строка
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>
|