forked from jsdom/jsdom
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change web platform test structure a bit
- Move w3c/domparsing to misc/domparsing; the intent was never to segregate specs by standards organization - Rename w3c/ to web-platform-tests/ for accuracy - Update web-platform-tests/index.js to be a bit DRYer, which should hopefully ease updating - Update to latest web-platform-tests revision
- Loading branch information
Showing
12 changed files
with
73 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "test/w3c/tests"] | ||
path = test/w3c/tests | ||
[submodule "test/web-platform-tests/tests"] | ||
path = test/web-platform-tests/tests | ||
url = https://github.com/w3c/web-platform-tests.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Submodule tests
deleted from
f3aabb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
"use strict"; | ||
const runWebPlatformTest = require("./run-web-platform-test")(exports); | ||
|
||
[ | ||
"dom/nodes/CharacterData-appendData.html", | ||
"dom/nodes/CharacterData-deleteData.html", | ||
"dom/nodes/CharacterData-insertData.html", | ||
"dom/nodes/CharacterData-replaceData.html", | ||
"dom/nodes/Document-contentType/contentType/createHTMLDocument.html", | ||
"dom/nodes/Document-createComment.html", | ||
"dom/nodes/Document-createProcessingInstruction.html", | ||
"dom/nodes/Document-createProcessingInstruction.xhtml", | ||
"dom/nodes/Document-createTextNode.html", | ||
"dom/nodes/Document-implementation.html", | ||
"dom/nodes/DocumentType-literal.html", | ||
"dom/nodes/DocumentType-literal.xhtml", | ||
"dom/nodes/DOMImplementation-createDocumentType.html", | ||
"dom/nodes/DOMImplementation-createHTMLDocument.html", | ||
"dom/nodes/DOMImplementation-hasFeature.html", | ||
"dom/nodes/Element-classlist.html", | ||
"dom/nodes/Element-getElementsByClassName.html", | ||
"dom/nodes/getElementsByClassName-01.htm", | ||
"dom/nodes/getElementsByClassName-02.htm", | ||
"dom/nodes/getElementsByClassName-03.htm", | ||
"dom/nodes/getElementsByClassName-04.htm", | ||
"dom/nodes/getElementsByClassName-05.htm", | ||
"dom/nodes/getElementsByClassName-06.htm", | ||
"dom/nodes/getElementsByClassName-07.htm", | ||
"dom/nodes/getElementsByClassName-08.htm", | ||
"dom/nodes/getElementsByClassName-09.htm", | ||
// "dom/nodes/getElementsByClassName-10.xml", // XML class attribute and localName and namespaces don't work well | ||
// "dom/nodes/getElementsByClassName-11.xml", // XML class attribute and localName and namespaces don't work well | ||
"dom/nodes/getElementsByClassName-12.htm", | ||
"dom/nodes/getElementsByClassName-13.htm", | ||
"dom/nodes/getElementsByClassName-14.htm", | ||
"dom/nodes/getElementsByClassName-15.htm", | ||
"dom/nodes/getElementsByClassName-16.htm", | ||
"dom/nodes/getElementsByClassName-17.htm", | ||
"dom/nodes/getElementsByClassName-18.htm", | ||
"dom/nodes/getElementsByClassName-19.htm", | ||
"dom/nodes/getElementsByClassName-20.htm", | ||
"dom/nodes/getElementsByClassName-21.htm", | ||
"dom/nodes/getElementsByClassName-22.htm", | ||
"dom/nodes/getElementsByClassName-23.htm", | ||
"dom/nodes/getElementsByClassName-24.htm", | ||
"dom/nodes/getElementsByClassName-25.htm", | ||
"dom/nodes/getElementsByClassName-26.htm", | ||
"dom/nodes/getElementsByClassName-27.htm", | ||
"dom/nodes/getElementsByClassName-28.htm", | ||
"dom/nodes/getElementsByClassName-29.htm", | ||
"dom/nodes/getElementsByClassName-30.htm", | ||
"dom/nodes/getElementsByClassName-31.htm", | ||
"dom/nodes/Node-baseURI.html", | ||
"dom/nodes/Node-cloneNode.html", | ||
"dom/traversal/NodeFilter-constants.html", | ||
"dom/traversal/NodeIterator.html", | ||
"html/dom/elements/global-attributes/classlist-nonstring.html", | ||
"html/infrastructure/urls/terminology-0/document-base-url.html", | ||
"html/syntax/serializing-html-fragments/outerHTML.html", | ||
"html/webappapis/atob/base64.html" | ||
] | ||
.forEach(runWebPlatformTest); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters