Revision 58127895fe8f809647dd0e098a7004c5bd47f67f authored by Ms2ger on 02 March 2017, 12:04:34 UTC, committed by Ms2ger on 02 March 2017, 12:04:34 UTC
1 parent 9e2174d
Raw File
004.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>
back to top