Bug 497734 - Add crashtests. r=me

This commit is contained in:
Jesse Ruderman 2017-10-18 09:43:11 -04:00
Родитель 6ea83868e1
Коммит 8a71e39fe1
3 изменённых файлов: 40 добавлений и 0 удалений

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

@ -0,0 +1,21 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
div = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
div.appendChild(document.getElementById("v"));
document.body.appendChild(div);
}
</script>
</head>
<body onload="boom();">
<video id="v"><source></source></video>
</body>
</html>

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

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<script>
function boom()
{
audio1 = document.createElement("audio");
(audio1).appendChild(document.createElement("source"));
(audio1).appendChild(document.createElement("source"));
setTimeout(function() {
audio2 = document.createElement("audio");
audio2.appendChild(audio1);
}, 100);
}
</script>
<body onload="boom();"></body>

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

@ -8,6 +8,8 @@ HTTP load 481136-1.html # needs to be HTTP to recognize the ogg as an audio file
load 492286-1.xhtml
load 493915-1.html
load 495794-1.html
load 497734-1.xhtml
load 497734-2.html
load 576612-1.html
load 752784-1.html
skip-if(Android) load 789075-1.html # bug 1374405