upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / media / media-controls-clone.html
1 <!DOCTYPE html>
2 <!-- This should be converted to a reftest in the future. -->
3 <body>
4 <!-- 
5   There are two pairs of <video> and <audio> with controls.
6   These pairs should have identical appearance.
7  -->
8 <div><video controls id=v></video><audio controls id=a></audio></div>
9 <div id=dest></div>
10
11 <script>
12 var dest = document.getElementById('dest');
13 dest.appendChild(document.getElementById('v').cloneNode());
14 dest.appendChild(document.getElementById('a').cloneNode());
15 </script>
16 </body>