OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <title>Insert a video element with controls into another document</title> | |
3 <script src="../resources/testharness.js"></script> | |
4 <script src="../resources/testharnessreport.js"></script> | |
5 <div id="log"></div> | |
6 <script> | |
7 test(function() | |
8 { | |
9 var video = document.createElement("video"); | |
10 video.controls = true; | |
11 video.src = "data:,"; | |
12 | |
13 var otherDocument = document.implementation.createHTMLDocument(); | |
14 otherDocument.body.appendChild(video); | |
15 }); | |
16 </script> | |
17 </html> | |
18 | |
19 | |
OLD | NEW |