summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/uievents/historical.html
blob: 5aa76f41ac56a7466fa5f7bfaaa1982a8c4215bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<meta charset=utf-8>
<title>Historical UI events features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {
  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>