https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e46d835e8e757a910dadc70f4f6e6b581fac2af4 authored by James Graham on 16 October 2013, 16:59:22 UTC
Add rewriten path for web idl parser
Tip revision: e46d835
Worker_script_mimetype.htm
<!DOCTYPE html>
<html>
<head>
<title> Worker construtor with script inside text file </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<script>
    
    var ExpectedResult = "Pass";

    var t = async_test("Test Description: Script resource is always assumed to be JavaScript, regardless of the MIME type.");
                  
    var worker = new Worker('./support/WorkerText.txt');

    worker.onmessage = t.step_func(function(evt)
    {
        assert_equals(evt.data, ExpectedResult);
        t.done();
    });

    worker.postMessage("start");
</script>
</body>
</html>
back to top