blob: 7280c02c84f149b11beea6a489fbafa5aa6daf30 [file] [log] [blame]
<!-- webkit-test-runner [ enableModernMediaControls=false ] -->
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function onPause()
{
var videoElement = document.getElementById("fr").contentDocument.querySelector("video");
if (window.testRunner)
testRunner.displayAndTrackRepaints();
videoElement.currentTime = videoElement.duration * 0.50;
}
function onSeeked()
{
if (window.testRunner)
testRunner.notifyDone();
}
function frameLoaded()
{
var videoElement = document.getElementById("fr").contentDocument.querySelector("video");
videoElement.addEventListener("pause", onPause, false);
videoElement.addEventListener("seeked", onSeeked, false);
// The MediaDocument has AUTOPLAY set, make sure we're paused.
videoElement.pause();
}
</script>
<p>
This tests that in a standalone media document with audio content, the media element repaints correctly
while playing.
</p>
<iframe src="content/silence.wav" id="fr" width=380 height=330 onload="frameLoaded()"></iframe>
<script>// To produce the same layout as before iframe was moved down to avoid rebaselines of different platforms.
// https://bugs.webkit.org/show_bug.cgi?id=54942
</script>