https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8e253afd467510fd23201bd9086920eb06ce920a authored by Hallvord R. M. Steen on 19 October 2014, 21:58:51 UTC
making it clearer what events are firing, in what order and what the state of the request is at each step
Tip revision: 8e253af
WorkerLocation_search_empty.htm
<!DOCTYPE html>
<html>
<head>
<title> WorkerLocation.search with empty &lt;query&gt; </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<script>
    
    var FileName = "./support/WorkerLocation.js";
    var SearchString = "?";
    var ExpectedResult = "";
    var description = "WorkerLocation.search Getter Condition: input is a hierarchical URL, "
                    + "and contained a &lt;query&gt; component (possibly an empty one).";
    
    var t = async_test("Test Description: " + description);
                  
    var worker = new Worker(FileName + SearchString);

    worker.onmessage = t.step_func(function(evt)
    {
        assert_equals(evt.data.search, ExpectedResult);
        t.done();
    });
</script>
</body>
</html>
back to top