summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/media-elements/offsets-into-the-media-resource/duration.html
blob: 0ac26eddb938b9d2464c636e680153a2006e735e (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<title>duration</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
test(function() {
  var v = document.createElement('video');
  assert_true(isNaN(v.duration));
}, 'duration initial value');
</script>