blob: 0bae55aaf1b362bd169d27a65de09bf0513dadd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
var expectedLoads = 3;
function load_done() {
--expectedLoads;
if (expectedLoads == 0) {
document.documentElement.className = "";
}
}
function addLink() {
var l = document.createElement("link");
l.rel = "stylesheet";
l.type = "text/css";
l.href = "data:text/css,some { random: data }";
l.onload = load_done;
document.getElementsByTagName("head")[0].appendChild(l);
}
function doIt() {
document.styleSheets[0].insertRule('a {}', 0)
addLink();
addLink();
}
addLink();
</script>
</head>
<body onload="doIt()">
<body>
</body>
|