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

Unified Diff: LayoutTests/fast/dom/NodeList/nodelist-iterable.html

Issue 1220883007: [dom] support iterable<> NodeList (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add a little title Created 5 years, 6 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/fast/dom/NodeList/nodelist-iterable.html
diff --git a/LayoutTests/fast/dom/NodeList/nodelist-iterable.html b/LayoutTests/fast/dom/NodeList/nodelist-iterable.html
new file mode 100644
index 0000000000000000000000000000000000000000..855d86486013b7ec0c4c5cea321cf616a5679e48
--- /dev/null
+++ b/LayoutTests/fast/dom/NodeList/nodelist-iterable.html
@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Ensure NodeList semantically matches WebIDL iterable/title>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<div id="container">
+ <div id="div1"></div>
+ <div id="div2"></div><br>
+ <div id="div3"></div><br>
+ <div id="div4"></div><br>
+ <div id="div5"></div><br>
+ <form id="form">
+ <input id="rad1" type="radio" name="radio" value="a">
+ <input id="rad2" type="radio" name="radio" value="b">
+ <input id="rad3" type="radio" name="radio" value="c">
+ <input id="rad4" type="radio" name="radio" value="d">
+ </form>
+</div>
+<script>
+"use strict";
+
+test(function () {
+ let nodeList = container.querySelectorAll("div");
+ let id = 0;
+ for (let node of nodeList) {
+ assert_true(node instanceof HTMLDivElement, "elements should be expected types");
+ assert_equals(node.id, "div" + ++id, "elements should be the expected values");
+ }
+}, "for (node of NodeList)");
+
+
+test(function () {
+ let nodeList = container.querySelectorAll("div");
+ for (let entry of nodeList.entries()) {
+ let id = entry[0] + 1;
+ let node = entry[1];
+ assert_true(node instanceof HTMLDivElement, "elements should be expected types");
+ assert_equals(node.id, "div" + id, "elements should be the expected values");
+ }
+}, "for ([index, node] of NodeList.entries())");
+
+
+test(function () {
+ let nodeList = container.querySelectorAll("div");
+ for (let id of nodeList.keys()) {
+ let node = nodeList[id++];
+ assert_true(node instanceof HTMLDivElement, "elements should be expected types");
+ assert_equals(node.id, "div" + id, "elements should be the expected values");
+ }
+}, "for (index of NodeList.keys())");
+
+
+test(function () {
+ let nodeList = container.querySelectorAll("div");
+ let id = 0;
+ for (let node of nodeList.values()) {
+ assert_true(node instanceof HTMLDivElement, "elements should be expected types");
+ assert_equals(node.id, "div" + ++id, "elements should be the expected values");
+ }
+}, "for (node of NodeList.values())");
+
+
+test(function () {
+ let nodeList = container.querySelectorAll("div");
+ nodeList.forEach(function(node, id) {
+ assert_true(node instanceof HTMLDivElement, "elements should be expected types");
+ assert_equals(node.id, "div" + ++id, "elements should be the expected values");
+ });
+}, "iterable<Node>#forEach()");
+
+
+test(function() {
+ let nodeList = form.radio;
+ let rad = rad1;
+ let id = 0;
+ for (let node of nodeList) {
+ assert_true(node instanceof HTMLInputElement, "elements should be expected types");
+ assert_equals(node.id, "rad" + ++id, "elements should be the expected values");
+ if (node === rad2) {
+ rad1.remove();
+ ++id;
+ assert_equals(nodeList[0], rad2);
+ }
+ }
+ form.insertBefore(rad, rad2);
+}, "Delete earlier element in NodeList");
+
+
+test(function() {
+ let nodeList = form.radio;
+ let rad = rad2;
+ let id = 0;
+ for (let node of nodeList) {
+ assert_true(node instanceof HTMLInputElement, "elements should be expected types");
+ assert_equals(node.id, "rad" + ++id, "elements should be the expected values");
+ assert_false(node.id === "rad2", "deleted later elements should not be iterated");
+ if (node === rad1) {
+ rad.remove();
+ ++id;
+ }
+ }
+ form.insertBefore(rad, rad3);
+}, "Delete later element in NodeList");
+
+
+if (window.testRunner)
+ container.style.display = "none";
arv (Not doing code reviews) 2015/07/01 20:53:08 You could put your html into a <template> element
+</script>

Powered by Google App Engine
This is Rietveld 408576698