Skip to content

Commit

Permalink
Add coverage for webkit prefixed historical interface (#44462)
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
Ahmad-S792 authored Feb 8, 2024
1 parent a15d391 commit 54a180f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions uievents/historical.html
Original file line number Diff line number Diff line change
Expand Up @@ -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");
</script>

0 comments on commit 54a180f

Please sign in to comment.