- From: Zhang, Zhiqiang <zhiqiang.zhang@intel.com>
- Date: Fri, 21 Dec 2012 02:41:28 +0000
- To: Robin Berjon <robin@w3.org>, "'public-html-testsuite@w3.org'" <public-html-testsuite@w3.org>
- CC: "Santos, Thiago" <thiago.santos@intel.com>
> -----Original Message-----
> From: Robin Berjon [mailto:robin@w3.org]
> Sent: Thursday, December 20, 2012 7:19 PM
> To: 'public-html-testsuite@w3.org'
> Subject: Missing files
>
> * Audio/Video. There are references to support/mediaelement.js. It's not
> clear that it does anything, but there is no such file anywhere.
>
Thanks for finding this. support/mediaelement.js is unreferenced; feel free to remove it.
diff --git a/tests/approved/audio/audio_defaultMuted_reflect.html b/tests/approved/audio/audio_defaultMuted_reflect.html
--- a/tests/approved/audio/audio_defaultMuted_reflect.html
+++ b/tests/approved/audio/audio_defaultMuted_reflect.html
@@ -3,17 +3,16 @@
<head>
<title>Audio Test: audio_defaultMuted_check</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="http://dev.w3.org/html5/spec/single-page.html#dom-media-defaultmuted" />
<meta name="flags" content="" />
<meta name="assert" content="Check that the defaultMuted reflects the muted content attribute in the audio element but has no dynamic effect" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
- <script src="support/mediaelement.js"></script>
</head>
<body>
<div id="log"></div>
<audio id="m" muted>The user agent doesn't support media element.</audio>
<audio id="a">The user agent doesn't support media element.</audio>
<script type="text/javascript">
var media = document.getElementById("m");
var audio = document.getElementById("a");
@@ -32,9 +31,9 @@
}, "Check if audio.defaultMuted returns false when the muted attribute is absent in the audio element");
test(function() {
audio.muted = true;
assert_false(audio.defaultMuted, "media.defaultMuted of value");
}, "Check if audio.defaultMuted returns false after the muted attribute is set to true when the muted attribute is absent in the audio element");
</script>
</body>
-</html>
\ No newline at end of file
+</html>
diff --git a/tests/approved/video/video_defaultMuted_reflect.html b/tests/approved/video/video_defaultMuted_reflect.html
--- a/tests/approved/video/video_defaultMuted_reflect.html
+++ b/tests/approved/video/video_defaultMuted_reflect.html
@@ -3,17 +3,16 @@
<head>
<title>Video Test: video_defaultMuted_check</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="http://dev.w3.org/html5/spec/single-page.html#dom-media-defaultmuted" />
<meta name="flags" content="" />
<meta name="assert" content="Check that the defaultMuted reflects the muted content attribute in the video element but has no dynamic effect" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
- <script src="support/mediaelement.js"></script>
</head>
<body>
<div id="log"></div>
<video id="m" muted>The user agent doesn't support media element.</video>
<video id="v">The user agent doesn't support media element.</video>
<script type="text/javascript">
var media = document.getElementById("m");
var video = document.getElementById("v");
diff --git a/tests/submission/Intel/audio/audio_defaultMuted_reflect.html b/tests/submission/Intel/audio/audio_defaultMuted_reflect.html
--- a/tests/submission/Intel/audio/audio_defaultMuted_reflect.html
+++ b/tests/submission/Intel/audio/audio_defaultMuted_reflect.html
@@ -3,17 +3,16 @@
<head>
<title>Audio Test: audio_defaultMuted_check</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="http://dev.w3.org/html5/spec/single-page.html#dom-media-defaultmuted" />
<meta name="flags" content="" />
<meta name="assert" content="Check that the defaultMuted reflects the muted content attribute in the audio element but has no dynamic effect" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
- <script src="support/mediaelement.js"></script>
</head>
<body>
<div id="log"></div>
<audio id="m" muted>The user agent doesn't support media element.</audio>
<audio id="a">The user agent doesn't support media element.</audio>
<script type="text/javascript">
var media = document.getElementById("m");
var audio = document.getElementById("a");
@@ -32,9 +31,9 @@
}, "Check if audio.defaultMuted returns false when the muted attribute is absent in the audio element");
test(function() {
audio.muted = true;
assert_false(audio.defaultMuted, "media.defaultMuted of value");
}, "Check if audio.defaultMuted returns false after the muted attribute is set to true when the muted attribute is absent in the audio element");
</script>
</body>
-</html>
\ No newline at end of file
+</html>
diff --git a/tests/submission/Intel/video/video_defaultMuted_reflect.html b/tests/submission/Intel/video/video_defaultMuted_reflect.html
--- a/tests/submission/Intel/video/video_defaultMuted_reflect.html
+++ b/tests/submission/Intel/video/video_defaultMuted_reflect.html
@@ -3,17 +3,16 @@
<head>
<title>Video Test: video_defaultMuted_check</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="http://dev.w3.org/html5/spec/single-page.html#dom-media-defaultmuted" />
<meta name="flags" content="" />
<meta name="assert" content="Check that the defaultMuted reflects the muted content attribute in the video element but has no dynamic effect" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
- <script src="support/mediaelement.js"></script>
</head>
<body>
<div id="log"></div>
<video id="m" muted>The user agent doesn't support media element.</video>
<video id="v">The user agent doesn't support media element.</video>
<script type="text/javascript">
var media = document.getElementById("m");
var video = document.getElementById("v");
Received on Friday, 21 December 2012 02:42:03 UTC