blob: 91d0d8ff3ba1ac64640e0781b8a69508298a7103 [file] [log] [blame]
<html>
<!--
Note the lack of doctype above: That is intentional. This test
MUST be in quirks mode to have any real testing power.
-->
<head>
<title>Cross-origin CSS</title>
<script>
// Prune memory cache to make sure we don't use a cached parsed stylesheet, in which case
// the console warning would not be shown and the test would be flaky.
internals.pruneMemoryCacheToSize(0);
</script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<link rel="stylesheet" href="/resources/redirect.php?url=http://localhost:8000/security/resources/xorigincss1.html"></link>
<script>
function getBackgroundColorForId(id) {
return window.getComputedStyle(document.getElementById(id), null).getPropertyValue('background-color')
}
var onloadTest = async_test("Testing cross-origin and MIME behavior for CSS.");
window.onload = function () {
test(function () {
assert_equals(getBackgroundColorForId('id1'), 'rgba(0, 0, 0, 0)');
}, 'xorigincss1.html should not be loaded via &lt;link&gt;.');
onloadTest.done();
};
</script>
</head>
<body>
<div id="id1" class="id1"></div>
</body>
</html>