blob: cb72f4468132896689de081ce45a1da97b48923d (
plain)
1
2
3
4
5
6
7
8
|
window.assertSpeculationRulesIsSupported = () => {
assert_implements(
'supports' in HTMLScriptElement,
'HTMLScriptElement.supports must be supported');
assert_implements(
HTMLScriptElement.supports('speculationrules'),
'<script type="speculationrules"> must be supported');
};
|