Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

revert b1a31096 - Test for non-support of <source media> #2565

Merged
merged 2 commits into from
Feb 10, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 is 'all' by default.</title>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change this to HTML5 Media Elements: 'media' attribute

<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("'media' attribute is 'all' by default.");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the argument (it will use the title as test name)


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 src='" + getVideoURI("/media/movie_300") + "'" +
" />"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add media="not all" here to see that the attribute is actually ignored for video elements.

);
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