mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
12 lines
243 B
HTML
12 lines
243 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);
|
|
finish();
|
|
</script>
|
|
</head>
|
|
</html>
|