Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/links/manifest/link-relationship/link-rel-manifest.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
Test that "manifest" is a supported value for the `rel` of a `link`
</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
const result = document.createElement("link").relList.supports("manifest");
assert_true(
result,
"Expected true if manifest is supported as a link relationship"
);
}, 'link element supports a rel value of "manifest".');
</script>