summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/with-options/unknown-parameter.html
blob: de050e74f5e2b5c4a102a3b0be1a43c4c2219117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>unknown parameter</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function() {
  postMessage('', {someBogusParameterOnThisDictionary: 'food'});
  onmessage = this.step_func(function(e) {
    assert_equals(e.data, '');
    this.done();
  });
});
</script>