https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0ebbaaad184b1f9d2d27e91c5c623cce85149a82 authored by bylee on 12 April 2014, 04:46:17 UTC
Add test-case that if both types of custom element types are provided at the time of element's instantiation, the custom tag must win over the type extension.
Tip revision: 0ebbaaa
WorkerNavigator_appName.htm
<!DOCTYPE html>
<title> WorkerNavigator appName </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function(t) {
  var worker = new Worker("./support/WorkerNavigator.js");
  worker.onmessage = t.step_func_done(function(e) {
    assert_equals(e.data.appName, navigator.appName);
  });
});
</script>
back to top