1 |
<!DOCTYPE html> |
2 |
<html> |
3 |
<head> |
4 |
<title>Access to cssRules in <iframe></title> |
5 |
<style type="text/css"> |
6 |
iframe { |
7 |
width: 0; height: 0; border-style: none; |
8 |
} |
9 |
</style> |
10 |
</head> |
11 |
<body onload=" |
12 |
var r = document.getElementById ('result'); |
13 |
r.innerHTML = 'FAIL'; |
14 |
var iframe = document.getElementsByTagName ('iframe')[0]; |
15 |
var idoc = iframe.contentDocument; |
16 |
var istyle = idoc.getElementsByTagName ('style')[0]; |
17 |
var isheet = istyle.sheet; |
18 |
var cssRules = isheet.cssRules; |
19 |
if (cssRules) { |
20 |
r.innerHTML = 'PASS'; |
21 |
} |
22 |
"> |
23 |
<p id="result">FAIL (noscript)</p> |
24 |
<p><iframe src="about:<head><style></style>"></iframe></p> |
25 |
</body> |
26 |
</html> |