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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-root.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/get-element-by-id-in-shadow-root.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-root.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-root.html
index bf572912bd0588add6c7a1eba25b7597d56319f8..f69ce9fd63ab2de60105bca0f84c4a33b1c59b55 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-root.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-root.html
@@ -26,11 +26,11 @@ function prepareDomTree(parent)
function test()
{
prepareDomTree(document.body);
- shouldBeEqualToString("getNodeInTreeOfTrees('divA/inputB').id", 'inputB');
- shouldBeEqualToString("getNodeInTreeOfTrees('divA/divC').id", 'divC');
- shouldBeEqualToString("getNodeInTreeOfTrees('divA/divC/inputD').id", 'inputD');
- shouldBeEqualToString("getNodeInTreeOfTrees('divA/divC//inputE').id", 'inputE');
- shouldBeEqualToString("getNodeInTreeOfTrees('divA/divC///inputF').id", 'inputF');
+ shouldBeEqualToString("getNodeInComposedTree('divA/inputB').id", 'inputB');
+ shouldBeEqualToString("getNodeInComposedTree('divA/divC').id", 'divC');
+ shouldBeEqualToString("getNodeInComposedTree('divA/divC/inputD').id", 'inputD');
+ shouldBeEqualToString("getNodeInComposedTree('divA/divC//inputE').id", 'inputE');
+ shouldBeEqualToString("getNodeInComposedTree('divA/divC///inputF').id", 'inputF');
}
test();

Powered by Google App Engine
This is Rietveld 408576698