From 7b1da9dcf61c1b32cc24d7e818a920543a658ebf Mon Sep 17 00:00:00 2001 From: Ahmad Saleem Date: Thu, 8 Feb 2024 02:57:15 +0000 Subject: [PATCH] Add coverage for `webkit` prefixed historical interface Hi Team, It was supported by Safari / WebKit until recently and it was removed weeks ago, I think it would be good to add coverage for it. Thanks! --- uievents/historical.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/uievents/historical.html b/uievents/historical.html index d2d33b44c7050e..5aa76f41ac56a7 100644 --- a/uievents/historical.html +++ b/uievents/historical.html @@ -8,4 +8,8 @@ assert_false("initWheelEvent" in WheelEvent.prototype, "Should not be supported on the prototype"); }, "WheelEvent#initWheelEvent"); +test(function() { + assert_false("initWebKitWheelEvent" in WheelEvent.prototype, + "Should not be supported on the prototype"); +}, "WheelEvent#initWebKitWheelEvent");