gecko-dev/servo/tests/html/test_UIEvent_resize.html

24 строки
827 B
HTML

<html>
<head>
<title></title>
<script src="../content/harness.js"></script>
</head>
<body>
<script>
window.addEventListener("resize", function (aEvent) {
// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#event-type-resize
is_a(aEvent, UIEvent, "event should be UIEvent.");
is(aEvent.bubbles, false, "Bubbles should be No.");
is(aEvent.cancelable, false, "Cancelable should be No.");
is(aEvent.target, window, "Target should be defaultView.");
is_a(aEvent.target, Window, "UIEvent.target should be instance of Window.");
//is(aEvent.view, document.defaultView, "UIEvent.view should be defaultView.");
is_a(aEvent.view, Window, "UIEvent.view should be instance of Window.");
is(aEvent.detail, 0, "UIEvent.detail should be 0.");
}, false);
</script>
</body>
</html>