blob: 4c8518e895cabaf6c8c044dd6f7eb539230eace0 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
video {
background-color: gray;
width: 400px;
height: 225px;
border-radius: 200px 0px 100px 0px;
transform: translateZ(0);
}
</style>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
}
function canPlay() {
setTimeout(function() {
if (window.testRunner)
testRunner.notifyDone();
}, 0);
}
</script>
</head>
<body>
<h3>It passes if:</h3>
<ul>
<li>the video content has rounded corners (top left and bottom right)</li>
<li>gray background is not visible</li>
</ul>
<video src='../../media/resources/frame_size_change.webm' oncanplaythrough='canPlay();'></video>
</body>
</html>