Commit fa70b2e0 authored by Blake Kaplan's avatar Blake Kaplan
Browse files

Bug 851353 - Add crashtest. r=bholley

parent b6a3f9f6
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html class="reftest-wait">
<head>
    <meta charset="UTF-8">
    <script>
        function start() {
            var doc = document.getElementsByTagName("iframe")[0].contentDocument;
            var vid = doc.getElementsByTagName("video")[0];

            function runnable() {
                // The doc.write forces us to recreate doc's body.
                doc.write("Hello, world");
                doc.body.appendChild(vid);
                document.documentElement.removeAttribute("class");
            }

            doc.open();
            setTimeout(runnable, 0);
        }
    </script>
</head>
<body onload='start()'>
    <iframe src="data:text/html,<meta charset=UTF-8><body><video src=http://localhost:8080/ controls=true loop=true autoplay=true autobuffer=false></video>"></iframe>
</body>
</html>
+1 −0
Original line number Diff line number Diff line
@@ -133,5 +133,6 @@ load 841205.html
load 844404.html
load 847127.html
load 849601.html
load 851353-1.html
load 863950.html
load 864448.html