Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/media-elements/loading-the-media-resource/resource-selection-source-media.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>the <source> media attribute</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<video><source src="resources/delayed-broken-video.py" media="not all"></video>
<script>
test(function() {
var v = document.querySelector('video');
var s = document.querySelector('source');
assert_equals(v.networkState, v.NETWORK_NO_SOURCE);
assert_equals(v.currentSrc, '');
});
</script>