зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1716675
- Move Gecko's internal tests of audio with controls into wpt. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D118100
This commit is contained in:
Родитель
4ed41cabbb
Коммит
327fcd4a7f
|
@ -1,6 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<audio controls></audio>
|
||||
</body>
|
||||
</html>
|
|
@ -1,10 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<body>
|
||||
<audio id="a"></audio>
|
||||
<script>
|
||||
document.body.offsetTop;
|
||||
document.getElementById("a").setAttribute("controls", "");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -1154,8 +1154,6 @@ fails-if(usesRepeatResampling) fails-if(Android) fails-if(!useDrawSnapshot&&webr
|
|||
== 446100-1h.html about:blank
|
||||
== 447749-1.html 447749-1-ref.html
|
||||
fuzzy(0-127,0-2) == 448193.html 448193-ref.html
|
||||
!= 449149-1a.html about:blank
|
||||
!= 449149-1b.html about:blank
|
||||
== 449171-1.html 449171-ref.html
|
||||
== 449362-1.html 449362-1-ref.html
|
||||
fuzzy-if(webrender,0-4,0-361) == 449519-1.html 449519-1-ref.html
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<title>HTML audio with controls</title>
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#embedded-content-rendering-rules">
|
||||
<link rel="mismatch" href="/common/blank.html">
|
||||
|
||||
<audio controls></audio>
|
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<title>HTML audio with controls via Web APIs</title>
|
||||
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#embedded-content-rendering-rules">
|
||||
<link rel="mismatch" href="/common/blank.html">
|
||||
|
||||
<audio id="target"></audio>
|
||||
|
||||
<script>
|
||||
document.body.offsetTop;
|
||||
document.getElementById("target").setAttribute("controls", "");
|
||||
</script>
|
Загрузка…
Ссылка в новой задаче