Add test.

This commit is contained in:
Ms2ger 2013-11-24 09:48:20 +01:00
parent 29a7405b4e
commit 4bf9bece92

View file

@ -0,0 +1,11 @@
<!doctype html>
<script src="harness.js"></script>
<script>
try {
document.createElement("1foo");
is(true, false, "No exception thrown");
} catch (e) {
is(true, true, "Exception caught");
}
finish();
</script>