Enable DOMParser test case

Now that #1071 is fixed.
This commit is contained in:
Keegan McAllister 2013-10-17 18:58:41 -07:00
parent 1e4d3e2661
commit 377a76ab1b

View file

@ -5,7 +5,7 @@
is_function(DOMParser, "DOMParser");
let parser = new DOMParser();
is_a(parser, DOMParser);
//is_a(parser.parseFromString("", "text/html"), Document);
is_a(parser.parseFromString("", "text/html"), Document);
finish();
</script>
</head>