From 7878792b7eb242ad44d209c334c2f860daf72716 Mon Sep 17 00:00:00 2001 From: Tim Nguyen Date: Mon, 20 Mar 2023 18:03:25 +0000 Subject: [PATCH] Bug 1820816 [wpt PR 38854] - Remove unnecessary dependency on popover=hint, a=testonly Automatic update from web-platform-tests Remove unnecessary dependency on popover=hint popover=hint isn't specified yet. To test popover attribute change, just switch from auto to manual. -- wpt-commits: 5029df746aee4eed9863b24961a90ec7690698ca wpt-pr: 38854 --- testing/web-platform/tests/html/semantics/popovers/popover-focus.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/web-platform/tests/html/semantics/popovers/popover-focus.html b/testing/web-platform/tests/html/semantics/popovers/popover-focus.html index a8555d7647c1..771efada1add 100644 --- a/testing/web-platform/tests/html/semantics/popovers/popover-focus.html +++ b/testing/web-platform/tests/html/semantics/popovers/popover-focus.html @@ -129,7 +129,7 @@ popover.showPopover(); assert_equals(document.activeElement, expectedFocusedElement, `${testName} activated by popover.showPopover()`); assert_equals(popover.popover, 'auto', 'All popovers in this test should start as popover=auto'); - popover.popover = 'hint'; + popover.popover = 'manual'; assert_false(popover.matches(':open'), 'Changing the popover type should hide the popover'); assert_equals(document.activeElement, priorFocus, 'prior element should get focus when the type is changed'); assert_false(isElementVisible(popover)); -- 2.11.4.GIT