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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/tooltips-in-shadow.html

Issue 1684533002: Rename "tree of trees" to "composed tree". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: third_party/WebKit/LayoutTests/fast/dom/shadow/tooltips-in-shadow.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/tooltips-in-shadow.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/tooltips-in-shadow.html
index 34732a3a204e41b99aed57496d259f8ed9d6f215..c3f2cfb629ee727ff1db8ae35beb30fe2da4e756 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/tooltips-in-shadow.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/tooltips-in-shadow.html
@@ -17,15 +17,15 @@ function setup()
label1 = 'Case1: Non-Nested';
container.appendChild(D('div', {'id': 'host1'}, S(D('a', {'id': 'target1', 'title': label1}, document.createTextNode("Hello1")))));
- cases.push({ target: getNodeInTreeOfTrees('host1/target1'), expected: label1 });
+ cases.push({ target: getNodeInComposedTree('host1/target1'), expected: label1 });
label2 = 'Case 2: Nested';
container.appendChild(D('div', {'id': 'host2'}, S(D('div', {'id': 'host2b'}, S(D('a', {'id': 'target2', 'title': label2}, document.createTextNode("Hello2")))))));
- cases.push({ target: getNodeInTreeOfTrees('host2/host2b/target2'), expected: label2 });
+ cases.push({ target: getNodeInComposedTree('host2/host2b/target2'), expected: label2 });
label3 = 'Case 3: Multiple Shadow';
container.appendChild(D('div', {'id': 'host3'}, S(D('div', {'id': 'scope3a'})), S(D('a', {'id': 'scope3b', 'title': label3 }, document.createTextNode("Hello3")))));
- cases.push({ target: getNodeInTreeOfTrees('host3//scope3b'), expected: label3 });
+ cases.push({ target: getNodeInComposedTree('host3//scope3b'), expected: label3 });
return cases;
}

Powered by Google App Engine
This is Rietveld 408576698