Skip to content

Instantly share code, notes, and snippets.

@marcelduran
Last active December 20, 2015 06:19
Show Gist options
  • Save marcelduran/6085117 to your computer and use it in GitHub Desktop.
Save marcelduran/6085117 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<script>console.log('pre css', performance.now());</script>
<link rel="stylesheet" href="http://1.cuzillion.com/bin/resource.cgi?type=css&sleep=2&n=1&t=12345" onload="console.log('css load', performance.now())">
<script>console.log('post css', performance.now());</script>
</head>
<body>
<h1>foo</h1>
<script>console.log('dom', performance.now());</script>
<h2>bar</h2>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment