Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: LayoutTests/traversal/moz-bug590771.html

Issue 1158433004: Remove Attr child nodes (making Attr a Node, not a ContainerNode) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address feedback Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/traversal/moz-bug590771.html
diff --git a/LayoutTests/traversal/moz-bug590771.html b/LayoutTests/traversal/moz-bug590771.html
deleted file mode 100644
index bc74085af6374e0eee6e36f7f234e8478cf38f32..0000000000000000000000000000000000000000
--- a/LayoutTests/traversal/moz-bug590771.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<!--
-Test adapted from http://mxr.mozilla.org/mozilla-central/source/content/base/test/test_bug590771.html
-
-https://bugzilla.mozilla.org/show_bug.cgi?id=590771
--->
-<head>
- <title>Test for Bug 590771</title>
-</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">
-
-if (window.testRunner)
- testRunner.dumpAsText();
-
-/** 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();
- console.log("test1: iterator should be on the first child attribute: " + (ni.referenceNode === attr.firstChild));
-
- attr.removeChild(attr.firstChild);
- console.log("test1: iterator should be on the attribute now: " + (ni.referenceNode === attr));
-}
-
-function test2()
-{
- var attr = document.createAttribute("foo");
- attr.value = "bar";
- var ni = document.createNodeIterator(attr, -1, null, false);
- ni.nextNode();
- ni.nextNode();
- console.log("test2: iterator should be on the first child attribute: " + (ni.referenceNode === attr.firstChild));
-
- attr.value = "";
- console.log("test2: iterator should be on the attribute now: " + (ni.referenceNode === attr));
-}
-
-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();
- console.log("test3: iterator should be on the first child attribute: " + (ni.referenceNode === attr.firstChild));
-
- node.setAttribute("foo", "");
- console.log("test3: iterator should be on the attribute now: " + (ni.referenceNode === attr));
-}
-
-test1();
-test2();
-test3();
-
-</script>
-</pre>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698