Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/xslt/tests/mochitest/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1072116">Mozilla Bug 1072116</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
var attr = document.createAttribute("c");
var xpathExpr = document.createExpression('a', null);
let isAlive = false;
try {
xpathExpr.evaluate(attr, null, null, null, null);
} catch(e) {
isAlive = true;
}
ok(isAlive, "Still alive \\o/");
</script>
</pre>
</body>
</html>