From d58d0033b1fc7e942d3eb64897fef82817240885 Mon Sep 17 00:00:00 2001 From: Joey Arhar Date: Wed, 1 Mar 2023 09:48:21 -0800 Subject: [PATCH] Change endpoint check from null to document In https://github.com/whatwg/html/pull/8886 I made the endpoint parameter in hide all popovers until never null by making it either a document or an element, but I forgot to change this null check to a document check. Fixes https://github.com/whatwg/html/issues/8963 --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index 6de62d1e183..46d5b7f9220 100644 --- a/source +++ b/source @@ -82120,8 +82120,8 @@ dictionary DragEventInit : MouseEventInit { -
  • If endpoint is null, then run closeAllOpenPopovers and - return.

  • +
  • If endpoint is a Document, then run + closeAllOpenPopovers and return.

  • Let lastToHide be null.