Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First pass WPT for Web App Manifest #23816

5 changes: 5 additions & 0 deletions manifest/META.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
spec: https://w3c.github.io/manifest/
suggested_reviewers:
- marcoscaceres
- mgiuca
- kenchris
11 changes: 11 additions & 0 deletions manifest/link-rel-manifest.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<title>Test that "manifest" is a supported value for the `rel` of a `link`</title>
<link rel="help" href="https://w3c.github.io/manifest">
<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>