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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-with-dom-mutation.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-with-dom-mutation.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-with-dom-mutation.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-with-dom-mutation.html
index 832ccb1aac22afde989f89bed58276a47f1ddca0..4038f4f171b1f173884b505bb829497c145760a8 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-with-dom-mutation.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/event-path-with-dom-mutation.html
@@ -29,13 +29,13 @@ sandbox.appendChild(
createDOM('content', {'id': 'M'})))))))));
['A', 'B', 'C', 'A/', 'A/E', 'A/F', 'A/E/', 'A/E/H', 'A/E/I', 'A/E/J', 'A/E/H/', 'A/E/H/L', 'A/E/H/M'].forEach(function(path) {
- getNodeInTreeOfTrees(path).addEventListener('click', function(event) {
+ getNodeInComposedTree(path).addEventListener('click', function(event) {
debug('\nevent.path on node ' + dumpNode(event.currentTarget));
debug(dumpNodeList(event.path));
});
});
['B', 'A/E/I'].forEach(function(path) {
- getNodeInTreeOfTrees(path).addEventListener('click', function(event) {
+ getNodeInComposedTree(path).addEventListener('click', function(event) {
debug('\nRemoving node ' + dumpNode(event.currentTarget.firstChild));
event.currentTarget.removeChild(event.currentTarget.firstChild);
});

Powered by Google App Engine
This is Rietveld 408576698