fg-loadcss
Version:
A function for loading CSS asynchronously
14 lines (13 loc) • 403 B
HTML
<html>
<head>
<title>Blocking Test</title>
<meta charset="utf-8">
<style>
@import url("slow.css" );
</style>
</head>
<body>
<p>This is a control test file to verify that an ordinary link to a slow-responding stylesheet will block render. If this text is not visible for 5 seconds or so, assumptions about CSS blocking render are valid in your browser.</p>
</body>
</html>