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
WorkerLocation_search_nonexist.htm
<!DOCTYPE html>
<html>
<head>
<title> WorkerLocation.search  with no &lt;query&gt; component </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 = SearchString;
    var description = "WorkerLocation.search returns an empty string when there is no &lt;query&gt; component in input URL.";
    
    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