Files
tubestation/servo/tests/content/test_DOMParser.html
2014-11-06 22:51:29 -07:00

12 lines
233 B
HTML

<html>
<head>
<script src="harness.js"></script>
<script>
is_function(DOMParser, "DOMParser");
let parser = new DOMParser();
is_a(parser, DOMParser);
is_a(parser.parseFromString("", "text/html"), Document);
</script>
</head>
</html>