https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 57efde67960dc7d060e017f27c1a780a6b591f4a authored by moz-wptsync-bot on 13 March 2018, 19:13:26 UTC
Don't use external server in CSS tables test,
Tip revision: 57efde6
007.html
<!--
var log = [];
var neverEncounteredValue = "This is not the value you are looking for.";
for (x in navigator) {
  // this should silently fail and not throw per webidl
  navigator[x] = neverEncounteredValue;
  if (navigator[x] === neverEncounteredValue)
    log.push(x);
}
postMessage(log.join(', '));
/*
-->
<!doctype html>
<title>readonlyness of members of Navigator</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function() {
  var worker = new Worker('#');
  worker.onmessage = this.step_func(function(e) {
    assert_equals(e.data, '');
    this.done();
  });
});
</script>
<!--
*/
//-->

back to top