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

Update Navigation API URL (and remove exception) #265

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion feature-group-definitions/navigation.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
spec: https://wicg.github.io/navigation-api/
spec: https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api
8 changes: 4 additions & 4 deletions scripts/specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ const specUrls: URL[] = webSpecs.flatMap(spec => {

type allowlistItem = [url: string, message: string];
const defaultAllowlist: allowlistItem[] = [
[
"https://wicg.github.io/navigation-api/",
"This spec is moving to WHATWG HTML. Remove this exception when https://github.com/whatwg/html/pull/8502 merges."
],
// [
// "https://example.com/spec/",
// "This spec is allowed because…. Remove this exception when https://example.com/org/repo/pull/1234 merges."
// ]
];

function isOK(url: URL, allowlist: allowlistItem[] = defaultAllowlist) {
Expand Down