https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7457fc57ae99a63460064a8c0fe67e68f9094adc authored by James Graham on 13 January 2014, 15:18:18 UTC
Move config file to config.default.json and allow creation of a config.json file to override specific settings
Tip revision: 7457fc5
postMessage_event_properties.htm
<!DOCTYPE html>
<html>
<head>
<title> postMessage(): MessageEvent properties </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<script>
    
    var TargetPort = null;
    var description = "The postMessage() method - Create an event that uses the MessageEvent interface, "
                    + "with the name message, which does not bubble and is not cancelable.";
    
    var t = async_test("Test Description: " + description);
    
    var channel = new MessageChannel();
    
    TargetPort = channel.port2;
    TargetPort.start();
    TargetPort.addEventListener("message", t.step_func(TestMessageEvent), true);
    
    channel.port1.postMessage("ping");

    function TestMessageEvent(evt)
    {
        ExpectedResult = ["[object MessageEvent]", "message", false, false];
        ActualResult = [evt.toString(), evt.type, evt.bubbles, evt.cancelable];
        
        assert_array_equals(ActualResult, ExpectedResult);
        t.done();
    }
</script>
</body>
</html>
back to top