Source-Repo: https://github.com/servo/servo Source-Revision: bb7621f5dc33dd5068a3a4de7cdfe3af8b3d4130
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>
|