mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
18 lines
313 B
HTML
18 lines
313 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);
|
|
|
|
finish();
|
|
</script>
|
|
</head>
|
|
</html>
|