Add the missing file for the test in bug 809654

This commit is contained in:
Ehsan Akhgari 2012-11-08 09:33:12 -05:00
Родитель aee7ba06a2
Коммит 5d5d4ac533
1 изменённых файлов: 14 добавлений и 0 удалений

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

@ -0,0 +1,14 @@
// Helpers for Web Audio tests
function expectException(func, exceptionCode) {
var threw = false;
try {
func();
} catch (ex) {
threw = true;
ok(ex instanceof DOMException, "Expect a DOM exception");
ok(ex.code, exceptionCode, "Expect the correct exception code");
}
ok(threw, "The exception was thrown");
}