mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-07-08 10:29:22 +00:00
15 lines
348 B
HTML
15 lines
348 B
HTML
<!doctype html>
|
|
<title>special value '/'</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<div id="log"></div>
|
|
<script>
|
|
async_test(function() {
|
|
postMessage('', '/', []);
|
|
onmessage = this.step_func(function(e) {
|
|
assert_equals(e.data, '');
|
|
this.done();
|
|
});
|
|
});
|
|
</script>
|