mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
11 lines
233 B
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>
|