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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-closed-shadowroot2.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/event-path-closed-shadowroot2.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-closed-shadowroot2.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-closed-shadowroot2.html
index 2fdba678e9426b838fa972b4cda96c4f810cd353..30297fff060d206a95e9d62a8425719db1e9553f 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-closed-shadowroot2.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-closed-shadowroot2.html
@@ -25,7 +25,7 @@ debug('Event.path should include only unclosed nodes.');
prepareTree();
-var target = getNodeInTreeOfTrees('host_open/div2_closed/div3_open/target');
+var target = getNodeInComposedTree('host_open/div2_closed/div3_open/target');
debug('The full event path should be (length=12):\n' +
'div#target, #shadow-root (open), div#div3_open, #shadow-root (closed),\n' +
@@ -37,7 +37,7 @@ debug('On #host_closed, #host_open, and #div2_closed,\n' +
'will be trimmed (length=8).\n');
['host_closed', 'host_open', 'host_open/div2_closed', 'host_open/div2_closed/div3_open', 'host_open/div2_closed/div3_open/target'].forEach(function(nodePath) {
- var node = getNodeInTreeOfTrees(nodePath);
+ var node = getNodeInComposedTree(nodePath);
var eventPath;
var clickHandler = function(e) { eventPath = e.path; };

Powered by Google App Engine
This is Rietveld 408576698