From d6947b3d1d9ca37dbca6fefc56e28485ba0141d8 Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Tue, 27 Apr 2021 15:41:21 +0900 Subject: [PATCH] Mark ShadowRoot.p.delegatesFocus standard & undeprecated (#10102) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/whatwg/dom/pull/974 added ShadowRoot.prototype.delegatesFocus to the DOM spec (see https://github.com/whatwg/dom/commit/f346858). And per https://github.com/whatwg/dom/issues/931#issuecomment-827075191 (https://trac.webkit.org/r276585) it’s been implemented in WebKit. So given that it’s now part of the DOM standard, and implemented in multiple browsers, this change resets the BCD status flags for it. Related MDN change: https://github.com/mdn/content/pull/4508 --- api/ShadowRoot.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/ShadowRoot.json b/api/ShadowRoot.json index e915ccd8961b0f..bb07c0d737c699 100644 --- a/api/ShadowRoot.json +++ b/api/ShadowRoot.json @@ -89,9 +89,9 @@ } }, "status": { - "experimental": true, - "standard_track": false, - "deprecated": true + "experimental": false, + "standard_track": true, + "deprecated": false } } },