blob: 3e1eaa5eff9c60fee13944d8350d1bd949e7537e [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Evaluating XPath expressions with orhpaned Attr as context node doesn't crash</title>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1236967">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
test(() => {
for (const expression of [
"..",
"parent",
"ancestor::*",
"ancestor-or-self::*",
"following::*",
"preceding::*",
]) {
const orphanedAttr = document.createAttribute("foo");
new XPathEvaluator().evaluate(expression, orphanedAttr, null, 2);
}
});
</script>