Bug 851353 - Add crashtest. r=bholley

This commit is contained in:
Blake Kaplan 2013-10-16 16:09:45 -07:00
Родитель b6a3f9f650
Коммит fa70b2e0a9
2 изменённых файлов: 26 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,25 @@
<!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>

Просмотреть файл

@ -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