diff --git a/feature-group-definitions/navigation.yml b/feature-group-definitions/navigation.yml index 7d368b44f13..412d499c93b 100644 --- a/feature-group-definitions/navigation.yml +++ b/feature-group-definitions/navigation.yml @@ -1 +1 @@ -spec: https://wicg.github.io/navigation-api/ +spec: https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api diff --git a/scripts/specs.ts b/scripts/specs.ts index 65559a5af39..6989abc31fa 100644 --- a/scripts/specs.ts +++ b/scripts/specs.ts @@ -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) {