https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e1c507e8b472a3e3629328cde3d1a4ec2a9e2972 authored by James Graham on 18 April 2014, 23:05:09 UTC
Fix a couple of unstable scheduling tests
Tip revision: e1c507e
Worker_ErrorEvent_filename.htm
<!DOCTYPE html>
<html>
<head>
<title> AbstractWorker ErrorEvent.filename </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<script>
    
    var ErrorMessage = "Error Message";
    var FileName = './support/ErrorEvent.js';
    var href = window.location.href;
    var ExpectedResult = href.substring(0, href.lastIndexOf('/')) + FileName.substring(1);
    var description = "ErrorEvent filename attribute represents the absolute URL of the script in which the error originally occurred.";
    
    var t = async_test("Test Description: " + description);
                  
    var worker = new Worker(FileName);

    worker.onerror = t.step_func(function(evt)
    {
        assert_equals(evt.filename, ExpectedResult);
        t.done();        
    });
    
    worker.postMessage(ErrorMessage);
</script>
</body>
</html>
back to top