Fixing test 459439-1.html to not depend on the load event (bug 521359)

This commit is contained in:
Robert O'Callahan 2009-10-15 17:51:10 +13:00
parent e21d6e0f62
commit 47905e65de

View File

@ -26,7 +26,7 @@ function done()
</script>
</head>
<body>
<audio id="audio" autoplay src="sound.ogg" onload="setTimeout(boom, 1);"></audio>
<audio id="audio" autoplay src="sound.ogg" oncanplaythrough="setTimeout(boom, 1);"></audio>
<div id="div"></div>
</body>
</html>