mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Move content tests to src/test/content for consistency
This commit is contained in:
parent
2238d81b53
commit
6f76244377
60 changed files with 2 additions and 2 deletions
12
src/test/content/test_DOMParser.html
Normal file
12
src/test/content/test_DOMParser.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue