Last active
December 20, 2015 06:19
-
-
Save marcelduran/6085117 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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