Skip to content

Commit

Permalink
Merge pull request #2565 from patrickkettner/readd-media-tests
Browse files Browse the repository at this point in the history
revert b1a3109 - Test for non-support of <source media>
  • Loading branch information
zcorpan committed Feb 10, 2016
2 parents 8f8075c + a0594d2 commit 523c271
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
45 changes: 45 additions & 0 deletions html/semantics/embedded-content-0/media-elements/video_008.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 Media Elements: 'media' attribute</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/html5/video.html#the-source-element" />
<meta name="assert" content="'media' attribute is 'all' by default." />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="text/javascript" src="/common/media.js"></script>
<script type="text/javascript">
var videotest = async_test();

function do_play(event)
{
videotest.step(function() {
var vid = document.getElementById("video0");
assert_true(vid.currentSrc.indexOf("movie_300") > 0);
});
videotest.done();
}

</script>
</head>
<body>
<div id='log'></div>

<video id="video0" autoplay onplay="do_play(event);">
<script type="text/javascript">

document.write(
"<source media='not all' src='" + getVideoURI("/media/movie_300") + "'" +
" />"
);
document.write(
"<source src='" + getVideoURI("/media/movie_5") + "'" +
" media='all' />"
);

</script>
Your browser does not support media elements.
</video>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
t('currentLoop'); // added in r692, removed in r2401.
t('addCuePoint'); // added in r721, replaced with addCueRange in r1106.
t('removeCuePoint'); // added in r721, replaced with removeCueRanges in r1106.
t('media', 'source'); // added in r724, removed in r8472.
t('playCount'); // added in r1105, removed in r2401.
t('addCueRange'); // added in r1106, removed in r5070.
t('removeCueRanges'); // added in r1106, removed in r5070.
Expand Down

0 comments on commit 523c271

Please sign in to comment.