Revision 8c6df8f2518e0d04d7814df6fd2d6600e613a9ab authored by Emilio Cobos Álvarez on 09 April 2018, 21:02:15 UTC, committed by moz-wptsync-bot on 09 April 2018, 21:02:15 UTC
Both Blink and WebKit pass the added tests. But of course all this stuff was
untested initially, and my initial naive implementation would fail them.
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=992245
gecko-commit: 5a24374d10f7b33f2582519664a21612c18f8cfb
gecko-integration-branch: central
gecko-reviewers: xidorn
1 parent 46abbd5
Raw File
MessageEvent_properties.htm
<!DOCTYPE html>
<html>
<head>
<title> MessageEvent interface and properties </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>

<div style="display:none">
    <iframe width="70%" onload="do_test()" src="./support/ChildWindowPostMessage.htm"></iframe>
</div>

<script>
async_test(function() {
    window.do_test = this.step_func(function() {
        document.querySelector("iframe").contentWindow.postMessage("foo", "*");
    })

    window.addEventListener("message", this.step_func_done(function(e) {
        e.preventDefault();
        assert_true(e instanceof MessageEvent, "Should be MessageEvent");
        assert_equals(e.type, "message");
        assert_false(e.bubbles, "bubbles");
        assert_false(e.cancelable, "cancelable");
        assert_false(e.defaultPrevented, "defaultPrevented");
    }), false);
});
</script>
</body>
</html>
back to top