chromium/third_party/blink/web_tests/http/tests/security/link-crossorigin-stylesheet-import-anonymous.html

<!DOCTYPE HTML>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
<script>
description("Test that CORS-fetched stylesheets (crossorigin=anonymous) handle @import as expected.");

window.testCount = 3;
</script>
<script src="resources/link-crossorigin-common.js"></script>
</head>
<link crossorigin="anonymous" rel="stylesheet" href="http://localhost:8080/security/resources/green-background-allow-star-import.php?1" onload="pass(event)" onerror="fail(event)">
<script>
function runTest()
{
    // Test that dynamically inserted <link> elements are handled the same way.
    var link = document.createElement("link");
    link.rel = "stylesheet";
    link.crossOrigin = "anonymous";
    link.onload = pass;
    link.onerror = fail;
    link.href = "http://localhost:8000/security/resources/green-background-allow-star-import.php?2";
    document.body.appendChild(link);

    link = document.createElement("link");
    link.rel = "stylesheet";
    link.crossOrigin = "anonymous";
    link.onload = pass;
    link.onerror = fail;
    link.href = "http://localhost:8080/security/resources/green-background-allow-star-import.php?3";
    document.body.appendChild(link);
}
window.onload = runTest;
</script>
</body>
</html>