Update web-platform-tests to revision 60220357131c65146444da1f54624d5b54d0975d

This commit is contained in:
WPT Sync Bot 2018-07-18 15:43:58 +00:00 committed by Tom Servo
parent c45192614c
commit 775b784f79
2144 changed files with 58115 additions and 29658 deletions

View file

@ -6,7 +6,6 @@
<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-media-loop" />
<meta name="flags" content="" />
<meta name="assert" content="Check if audio.loop is set to true that expecting the seeking event is fired more than once" />
<meta name=timeout content=long>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/media.js"></script>
@ -36,7 +35,7 @@
media.addEventListener("error", t.unreached_func());
media.addEventListener("seeking", startTest, false);
media.loop = true;
media.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
media.src = getAudioURI("/media/sound_0") + "?" + new Date() + Math.random();
media.play();
</script>
</body>

View file

@ -6,7 +6,6 @@
<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-media-loop" />
<meta name="flags" content="" />
<meta name="assert" content="Check if video.loop is set to true that expecting the seeking event is fired more than once" />
<meta name=timeout content=long>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/media.js"></script>
@ -34,7 +33,7 @@
media.addEventListener("seeking", startTest, false);
media.loop = true;
media.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
media.src = getVideoURI("/media/2x2-green") + "?" + new Date() + Math.random();
media.play();
</script>
</body>