blob: d2d33b44c7050e2b5d235347b194f6acecdfbfdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!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");
</script>
|