1
0
Fork 0
mirror of https://github.com/servo/servo.git synced 2025-07-18 04:43:41 +01:00
servo/tests/content/test_DOMParser.html

11 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>