link-rel-manifest.html (565B)
1 <!DOCTYPE html> 2 <title> 3 Test that "manifest" is a supported value for the `rel` of a `link` 4 </title> 5 <link rel="help" href="https://html.spec.whatwg.org/#link-type-manifest" /> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 <script> 9 test(() => { 10 const result = document.createElement("link").relList.supports("manifest"); 11 assert_true( 12 result, 13 "Expected true if manifest is supported as a link relationship" 14 ); 15 }, 'link element supports a rel value of "manifest".'); 16 </script>