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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-root-activeElement.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/shadow-root-activeElement.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-root-activeElement.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-root-activeElement.html
index 87b538d983a934f5d65bd054b03ad8be9a804129..8745fa0171ebe440d17def36d5f4328f2c2f570e 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-root-activeElement.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-root-activeElement.html
@@ -26,15 +26,15 @@ document.getElementById('sandbox').appendChild(
createDOM('content', {'select': '#distributed-light-child'})),
createDOM('div', {'id': 'distributed-light-child', 'tabindex': 1}))));
-var shadowHost1 = getNodeInTreeOfTrees('shadow-host-1');
-var shadowHost2 = getNodeInTreeOfTrees('shadow-host-1/shadow-host-2');
-var shadowRoot1 = getNodeInTreeOfTrees('shadow-host-1/');
-var shadowRoot2 = getNodeInTreeOfTrees('shadow-host-1/shadow-host-2/');
+var shadowHost1 = getNodeInComposedTree('shadow-host-1');
+var shadowHost2 = getNodeInComposedTree('shadow-host-1/shadow-host-2');
+var shadowRoot1 = getNodeInComposedTree('shadow-host-1/');
+var shadowRoot2 = getNodeInComposedTree('shadow-host-1/shadow-host-2/');
var nodeInDocument = document.getElementById('node-in-document');
var distributedLightChild = document.getElementById('distributed-light-child');
-var childInShadowRoot1 = getNodeInTreeOfTrees('shadow-host-1/child-in-shadow-root-1');
-var childInShadowRoot2 = getNodeInTreeOfTrees('shadow-host-1/shadow-host-2/child-in-shadow-root-2');
+var childInShadowRoot1 = getNodeInComposedTree('shadow-host-1/child-in-shadow-root-1');
+var childInShadowRoot2 = getNodeInComposedTree('shadow-host-1/shadow-host-2/child-in-shadow-root-2');
shouldBeDefined("shadowRoot1.activeElement");
shouldBeDefined("shadowRoot2.activeElement");

Powered by Google App Engine
This is Rietveld 408576698