blob: 99d2df7db6b67c9e186ade1160da6932f8dc90bd [file] [log] [blame]
<!DOCTYPE html>
<link rel="help" href="https://www.w3.org/TR/1999/REC-xpath-19991116/#function-starts-with">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="helpers.js"></script>
<body>
<div id="context"></div>
<script>
test(() => {
const context = document.querySelector('#context');
context.innerHTML = '<span>foo</span><span>bar<b>ber</b></span><b>bar</b>';
assert_true(evaluateBoolean('starts-with((./span)[2], ./b)', context));
}, 'starts-with() arguments depending on the context node');
</script>
</body>