mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 02:27:19 +02:00
LibWeb: Add WPT tests related to XPath evaluation
This commit is contained in:
committed by
Jelle Raaijmakers
parent
d2030a5377
commit
e9e58d83b3
Notes:
github-actions[bot]
2025-10-03 11:17:25 +00:00
Author: https://github.com/johannesg Commit: https://github.com/LadybirdBrowser/ladybird/commit/e9e58d83b36 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6342 Reviewed-by: https://github.com/AtkinsSJ Reviewed-by: https://github.com/gmta ✅
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Cross-document XPath evaluation</title>
|
||||
<script src="../resources/testharness.js"></script>
|
||||
<script src="../resources/testharnessreport.js"></script>
|
||||
<body>
|
||||
<script>
|
||||
function toArray(result) {
|
||||
var a = [];
|
||||
while (true) {
|
||||
var node = result.iterateNext();
|
||||
if (node === null) break;
|
||||
a.push(node);
|
||||
}
|
||||
return a;
|
||||
}
|
||||
|
||||
var html_ns = "http://www.w3.org/1999/xhtml";
|
||||
var xml_doc = document.implementation.createDocument(html_ns, "html");
|
||||
var html_doc = document.implementation.createHTMLDocument();
|
||||
|
||||
function ns_resolver(x) {
|
||||
if (x === "html") {
|
||||
return html_ns;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(xml_doc.evaluate("//html", xml_doc)), []);
|
||||
}, "evaluate operation on XML document, context node in XML document, no namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(html_doc.evaluate("//html", html_doc)), [html_doc.documentElement]);
|
||||
}, "evaluate operation on HTML document, context node in HTML document, no namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(xml_doc.evaluate("//html", html_doc)), [html_doc.documentElement]);
|
||||
}, "evaluate operation on XML document, context node in HTML document, no namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(html_doc.evaluate("//html", xml_doc)), []);
|
||||
}, "evaluate operation on HTML document, context node in XML document, no namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(xml_doc.evaluate("//html", xml_doc, ns_resolver)), []);
|
||||
}, "evaluate operation on XML document, context node in XML document, with namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(html_doc.evaluate("//html", html_doc, ns_resolver)), [html_doc.documentElement]);
|
||||
}, "evaluate operation on HTML document, context node in HTML document, with namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(xml_doc.evaluate("//html", html_doc, ns_resolver)), [html_doc.documentElement]);
|
||||
}, "evaluate operation on XML document, context node in HTML document, with namespace resolver");
|
||||
|
||||
test(function() {
|
||||
assert_array_equals(toArray(html_doc.evaluate("//html", xml_doc, ns_resolver)), []);
|
||||
}, "evaluate operation on HTML document, context node in XML document, with namespace resolver");
|
||||
</script>
|
||||
Reference in New Issue
Block a user