aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/test_UIEvent_resize.html
blob: a9d21ad07dbaa6ccd110e08d307da696d36f8006 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>