blob: a6af71fe8fcdbd3cde990b44a488f1911a81d740 [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ enableModernMediaControls=false ] -->
<!-- This should be converted to a reftest in the future. -->
<body>
<!--
There are two pairs of <video> and <audio> with controls.
These pairs should have identical appearance.
-->
<div><video controls id=v></video><audio controls id=a></audio></div>
<div id=dest></div>
<script>
var dest = document.getElementById('dest');
dest.appendChild(document.getElementById('v').cloneNode());
dest.appendChild(document.getElementById('a').cloneNode());
</script>
</body>