From 96c8608063adfd4c4510d82e9ac775cca334a83f Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Wed, 27 Nov 2024 11:12:31 +0100 Subject: [PATCH] Remove custom IDL for NavigateEvent (#1989) --- custom/idl/navigation-api.idl | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 custom/idl/navigation-api.idl diff --git a/custom/idl/navigation-api.idl b/custom/idl/navigation-api.idl deleted file mode 100644 index 290e7522a..000000000 --- a/custom/idl/navigation-api.idl +++ /dev/null @@ -1,13 +0,0 @@ -// Removed in https://github.com/WICG/navigation-api/pull/235 -partial interface NavigateEvent { - // Replaced with canIntercept - readonly attribute boolean canTransition; - // Replaced with intercept() - undefined transitionWhile(); -}; - -// Removed in https://github.com/WICG/navigation-api/pull/239 -partial interface NavigateEvent { - // Replaced with scroll() - undefined restoreScroll(); -};