mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a7db22e4cf
--HG-- extra : rebase_source : 01a79b3592e61fc612c27e5218f0872c09d7f07d
75 lines
1.9 KiB
HTML
75 lines
1.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=590771
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 590771</title>
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="application/javascript" 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=590771">Mozilla Bug 590771</a>
|
|
<p id="display"></p>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 590771 **/
|
|
|
|
function test1()
|
|
{
|
|
var attr = document.createAttribute("foo");
|
|
attr.value = "bar";
|
|
var ni = document.createNodeIterator(attr, -1, null, false);
|
|
ni.nextNode();
|
|
ni.nextNode();
|
|
is(ni.referenceNode, attr.firstChild,
|
|
"iterator should be on the first child attribute");
|
|
|
|
attr.removeChild(attr.firstChild);
|
|
is(ni.referenceNode, attr,
|
|
"iterator should be on the attribute now");
|
|
}
|
|
|
|
function test2()
|
|
{
|
|
var attr = document.createAttribute("foo");
|
|
attr.value = "bar";
|
|
var ni = document.createNodeIterator(attr, -1, null, false);
|
|
ni.nextNode();
|
|
ni.nextNode();
|
|
is(ni.referenceNode, attr.firstChild,
|
|
"iterator should be on the first child attribute");
|
|
|
|
attr.value = "";
|
|
is(ni.referenceNode, attr,
|
|
"iterator should be on the attribute now");
|
|
}
|
|
|
|
function test3()
|
|
{
|
|
var attr = document.createAttribute("foo");
|
|
attr.value = "bar";
|
|
var node = document.createElement("div");
|
|
node.setAttributeNode(attr);
|
|
var ni = document.createNodeIterator(attr, -1, null, false);
|
|
ni.nextNode();
|
|
ni.nextNode();
|
|
is(ni.referenceNode, attr.firstChild,
|
|
"iterator should be on the first child attribute");
|
|
|
|
node.setAttribute("foo", "");
|
|
is(ni.referenceNode, attr,
|
|
"iterator should be on the attribute now");
|
|
}
|
|
|
|
test1();
|
|
test2();
|
|
test3();
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|