blob: 93e8889d8f4b3796a493445e8b70dc1c545cc8c4 [file] [log] [blame]
<head>
<script>
function runTest()
{
if (window.layoutTestController)
layoutTestController.dumpAsText();
var stylesheet = document.createElement('style');
stylesheet.type = 'text/css';
stylesheet.rel = 'stylesheet';
document.getElementsByTagName("head")[0].appendChild(stylesheet);
if (stylesheet.sheet != null)
document.getElementById("result").innerHTML = "valid StyleSheet interface.";
}
</script>
</head>
<body onload="runTest()">
<div id="result">No stylesheet.</div>
</body>