Bug 691096 - Add test - r=cpearce

--HG--
extra : rebase_source : c2758165d8ef6bd31d180588efe9dfd0023d0707
This commit is contained in:
Chris Double 2011-11-03 14:58:59 +13:00
Родитель 675f5ba4a5
Коммит 5b5c922b3d
2 изменённых файлов: 27 добавлений и 0 удалений

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

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
var ITERATIONS = 200;
function stoptest ()
{
document.documentElement.removeAttribute("class");
}
function boom()
{
for (var i = 0; i < ITERATIONS; ++i) {
a = document.createElementNS("http://www.w3.org/1999/xhtml", "audio");
a.addEventListener("loadedmetadata", stoptest);
a.setAttributeNS(null, "autoplay", "");
a.setAttributeNS(null, "src", "sound.ogg");
}
setTimeout(stoptest, 250);
}
</script>
</head>
<body onload="boom();"></body>
</html>

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

@ -8,3 +8,4 @@ load 493915-1.html
skip-if(Android) load 495794-1.html
load 492286-1.xhtml
load 576612-1.html
load 691096-1.html