From 20d86795de58305757ad1885e849fba1c352e26c Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Thu, 10 Dec 2020 21:10:52 +0900 Subject: [PATCH] Mark Application Cache features non-standard (#7610) Per https://github.com/whatwg/html/pull/6153 and https://github.com/whatwg/html/commit/e4330d5, the Application Cache feature is no longer part of the HTML standard. So this change marks both the applicationCache member of SharedWorkerGlobalScope and the "manifest" attribute of the element as standard_track:false. --- api/SharedWorkerGlobalScope.json | 4 ++-- html/elements/html.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api/SharedWorkerGlobalScope.json b/api/SharedWorkerGlobalScope.json index 966e6d2cf7c7a5..a3e0ef975455a4 100644 --- a/api/SharedWorkerGlobalScope.json +++ b/api/SharedWorkerGlobalScope.json @@ -90,8 +90,8 @@ }, "status": { "experimental": false, - "standard_track": true, - "deprecated": false + "standard_track": false, + "deprecated": true } } }, diff --git a/html/elements/html.json b/html/elements/html.json index 9c215aadebc641..a79a9c89c51e27 100644 --- a/html/elements/html.json +++ b/html/elements/html.json @@ -100,7 +100,7 @@ }, "status": { "experimental": false, - "standard_track": true, + "standard_track": false, "deprecated": true } },