chromium/third_party/blink/web_tests/http/tests/ManualTests/fouc/import-with-style.html

<!doctype html>
<html>
<head>
<style>
#shouldBeBlue {
    background: red;
    color: white;
}
</style>
<link rel="import" href="resources/blue-style.html">
</head>
<body>
<span id="shouldBeBlue">This should be blue</span>
</body>
</html>