Forked from yoavweiss/domtokenlist_feature_detection.js
Last active
June 21, 2023 16:57
-
-
Save igrigorik/a02f2359f3bc50ca7a9c to your computer and use it in GitHub Desktop.
DOMTokenList supports() example for Preload
This file contains 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
var DOMTokenListSupports = function(tokenList, token) { | |
if (!tokenList || !tokenList.supports) { | |
return; | |
} | |
try { | |
return tokenList.supports(token); | |
} catch (e) { | |
if (e instanceof TypeError) { | |
console.log("The DOMTokenList doesn't have a supported tokens list"); | |
} else { | |
console.error("That shouldn't have happened"); | |
} | |
} | |
}; | |
// test if preload is supported | |
var linkSupportsPreload = DOMTokenListSupports(document.createElement("link").relList, "preload"); | |
if (linkSupportsPreload) { | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
on IE
relList
is not supported https://caniuse.com/#search=relList so you this only works on modern browsers which already support preload https://caniuse.com/#search=preload