| Index: LayoutTests/media/adopt-node-video-controls-crash.html
|
| diff --git a/LayoutTests/media/adopt-node-video-controls-crash.html b/LayoutTests/media/adopt-node-video-controls-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7a5125241b2ffd25dcdba16e8bdf050f9d63ada3
|
| --- /dev/null
|
| +++ b/LayoutTests/media/adopt-node-video-controls-crash.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<title>Insert a video element with controls into another document</title>
|
| +<script src="../resources/testharness.js"></script>
|
| +<script src="../resources/testharnessreport.js"></script>
|
| +<div id="log"></div>
|
| +<script>
|
| +test(function()
|
| +{
|
| + var video = document.createElement("video");
|
| + video.controls = true;
|
| + video.src = "data:,";
|
| +
|
| + var otherDocument = document.implementation.createHTMLDocument();
|
| + otherDocument.body.appendChild(video);
|
| +});
|
| +</script>
|
| +</html>
|
| +
|
| +
|
|
|