mirror of
https://github.com/servo/servo.git
synced 2025-07-29 18:20:24 +01:00
Remove tests/content/test_document_compatMode.html.
It is already covered by: html/dom/documents/resource-metadata-management/document-compatmode-03.html dom/nodes/Document-constructor.html dom/nodes/DOMImplementation-createHTMLDocument.html
This commit is contained in:
parent
b4151550cb
commit
0056ba95e1
1 changed files with 0 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
|||
<html>
|
||||
<head>
|
||||
<script src="harness.js"></script>
|
||||
<script>
|
||||
// test1: BackCompat
|
||||
{
|
||||
is(document.compatMode, "BackCompat", "test1-0, BackCompat");
|
||||
}
|
||||
|
||||
// test2: Non-parsed documents
|
||||
{
|
||||
var xmldoc = new Document;
|
||||
is(xmldoc.compatMode, "CSS1Compat", "test2-0, Non-parsed documents");
|
||||
|
||||
var htmldoc = document.implementation.createHTMLDocument("title");
|
||||
is(htmldoc.compatMode, "CSS1Compat", "test2-1, Non-parsed documents");
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue