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:
Boris Chiou 2021-06-21 22:36:15 +00:00
Родитель 4ed41cabbb
Коммит 327fcd4a7f
5 изменённых файлов: 19 добавлений и 18 удалений

Просмотреть файл

@ -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>