mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
12 lines
233 B
HTML
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>
|