mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3dfd6c1bac
--HG-- extra : rebase_source : d635a4f39c587d4d381b486dd63de747865b77a2
28 lines
794 B
HTML
28 lines
794 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title> WorkerLocation href attribute </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?srch%20#hash";
|
|
var href = window.location.href;
|
|
var ExpectedResult = href.substring(0, href.lastIndexOf('/')) + FileName.substring(1);
|
|
|
|
var t = async_test("Test Description: WorkerLocation href attribute must return the absolute URL that the WorkerLocation object represents.");
|
|
|
|
var worker = new Worker(FileName);
|
|
|
|
worker.onmessage = t.step_func(function(evt)
|
|
{
|
|
assert_equals(evt.data.href, ExpectedResult);
|
|
t.done();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|