mirror of
https://github.com/servo/servo.git
synced 2025-06-21 07:38:59 +01:00
16 lines
302 B
HTML
16 lines
302 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
<script>
|
|
is_function(MouseEvent, "MouseEvent");
|
|
|
|
let ev = new MouseEvent("press", {bubbles: true, screenX: 150, detail: 100});
|
|
|
|
is_a(ev, Event);
|
|
is_a(ev, UIEvent);
|
|
is_a(ev, MouseEvent);
|
|
is(ev.screenX, 150);
|
|
is(ev.detail, 100);
|
|
</script>
|
|
</head>
|
|
</html>
|