gecko-dev/servo/tests/html/test_UIEvent_resize.html
Anthony Ramine bdd5c96847 servo: Merge #11610 - Fix all the links to the UI Events spec (from nox:dom3events); r=emilio
Source-Repo: https://github.com/servo/servo
Source-Revision: 573c0a74684dc0043da4800a84065d72453641fd
2016-06-04 20:25:36 -05:00

24 lines
795 B
HTML

<html>
<head>
<title></title>
<script src="../content/harness.js"></script>
</head>
<body>
<script>
window.addEventListener("resize", function (aEvent) {
// http://dev.w3.org/csswg/cssom-view/#resizing-viewports
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>