Bug 877135. Remove leftover test. r=doublec

This commit is contained in:
Robert O'Callahan 2013-09-04 16:43:10 +12:00
parent 3e38679ec7
commit 34e2375067
2 changed files with 0 additions and 20 deletions

View File

@ -374,7 +374,6 @@ MOCHITEST_FILES = \
test_meta_attributes_reflection.html \
test_mod_attributes_reflection.html \
test_mozaudiochannel.html \
test_mozLoadFrom.html \
test_style_attributes_reflection.html \
test_bug629801.html \
test_bug839371.html \

View File

@ -1,19 +0,0 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Test for mozLoadFrom</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script>
try {
document.createElement("video").mozLoadFrom({});
ok(false, "This should be throw an exception");
} catch(e) {
ok(true, "This should be throw an exception");
}
</script>
</body>
</html>