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
(function() { | |
var CSSCriticalPath = function(w, d) { | |
var css = {}; | |
var pushCSS = function(r) { | |
// The last selector wins, so over-write | |
// merging existing css will happen here... | |
css[r.selectorText] = r.cssText; | |
}; | |
var parseTree = function() { |