gecko/testing/web-platform/tests/workers/WorkerLocation_pathname.htm
James Graham 3dfd6c1bac Bug 945222 - Initial import of web-platform-tests testsuite 1/4: test data
--HG--
extra : rebase_source : d635a4f39c587d4d381b486dd63de747865b77a2
2014-09-04 12:48:31 +01:00

28 lines
808 B
HTML

<!DOCTYPE html>
<html>
<head>
<title> WorkerLocation URL decomposition IDL attribute: pathname </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 pathname = window.location.pathname;
var ExpectedResult = pathname.substring(0, pathname.lastIndexOf('/')) + FileName.substring(1);
var t = async_test("Test Description: WorkerLocation pathname attribute returns the current path in the underlying URL.");
var worker = new Worker(FileName);
worker.onmessage = t.step_func(function(evt)
{
assert_equals(evt.data.pathname, ExpectedResult);
t.done();
});
</script>
</body>
</html>