-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1818125 [wpt PR 38636] - dom, domxpath: Update lookupNamespaceURI…
…() and createNSResolver(), a=testonly Automatic update from web-platform-tests DOM: update lookupNamespaceURI() and createNSResolver() For whatwg/dom#1165. lookupNamespaceURI(): Element should handle "xml" and "xmlns" by default. createNSResolver(): It should return the argument as is, and should not add "xml" prefix support. -- wpt-commits: eb3ce5b01216df940d8e84881d5b15c4456f522f wpt-pr: 38636
- Loading branch information
1 parent
d3e3a0b
commit 3bd2f17
Showing
2 changed files
with
68 additions
and
12 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
41 changes: 41 additions & 0 deletions
41
testing/web-platform/tests/domxpath/xpathevaluatorbase-creatensresolver.html
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,41 @@ | ||
<!DOCTYPE html> | ||
<script src='/resources/testharness.js'></script> | ||
<script src='/resources/testharnessreport.js'></script> | ||
<body> | ||
<script> | ||
[document, new XPathEvaluator()].forEach(evaluator => { | ||
test(() => { | ||
assert_equals(evaluator.createNSResolver(document), document, 'Document'); | ||
const fragment = document.createDocumentFragment(); | ||
assert_equals(evaluator.createNSResolver(fragment), fragment, | ||
'DocumentFragment'); | ||
assert_equals(evaluator.createNSResolver(document.doctype), | ||
document.doctype, 'DocumentType'); | ||
assert_equals(evaluator.createNSResolver(document.body), document.body, | ||
'Element'); | ||
assert_equals(evaluator.createNSResolver(document.body.firstChild), | ||
document.body.firstChild, 'Text'); | ||
const attr = document.createAttribute('foo'); | ||
assert_equals(evaluator.createNSResolver(attr), attr, 'Attr'); | ||
}, `createNSResolver() should return the specified node as is. (${evaluator.constructor.name})`); | ||
|
||
function createAndLookup(evaluator, node) { | ||
return evaluator.createNSResolver(node).lookupNamespaceURI('xml'); | ||
} | ||
|
||
test(() => { | ||
assert_equals(createAndLookup(evaluator, new Document()), null, 'Document'); | ||
assert_equals(createAndLookup(evaluator, new DocumentFragment()), null, | ||
'DocumentFragment'); | ||
assert_equals(createAndLookup(evaluator, document.doctype), null, | ||
'DocumentType'); | ||
assert_equals(createAndLookup(evaluator, document.createElement('body')), | ||
'http://www.w3.org/XML/1998/namespace', 'Element'); | ||
assert_equals(createAndLookup(evaluator, document.createTextNode('foo')), | ||
null, 'Text'); | ||
assert_equals(createAndLookup(evaluator, document.createAttribute('bar')), | ||
null, 'Attr'); | ||
}, `createNSResolver() resultant object should not add support of 'xml' prefix. (${evaluator.constructor.name})`); | ||
}); | ||
</script> | ||
</body> |