chromium/third_party/blink/web_tests/loader/link-load-only-supported-stylesheet-types.html

<!DOCTYPE html>
<html>
<body>
    <link rel="stylesheet" type="text/css" href="resources/blue.css">
    <link rel="stylesheet" type="application/javascript" href="resources/red.css">
    <link rel="stylesheet" href="resources/yellow.css">
    <div style="color: green" id="blue">This text should be blue</div>
    <div style="color: green" id="red">This text should be green</div>
    <div style="color: green" id="yellow">This text should be yellow</div>
</body>
</html>