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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/access-key.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/shadow/attr-dir-inherit.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/dom/shadow/access-key.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/access-key.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/access-key.html
index 2c84f93e5ab73a26a092ed46913375c8ffafbda9..14a990c9b4484bee28da995f5dc0773b6c159362 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/access-key.html
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/access-key.html
@@ -61,7 +61,7 @@ function prepareDOMTree(parent)
'shadowC/inputD', 'shadowC/inputE',
'shadowC/shadowF/inputG'];
for (var i = 0; i < ids.length; ++i) {
- var element = getNodeInTreeOfTrees(ids[i]);
+ var element = getNodeInComposedTree(ids[i]);
element.addEventListener('focus', recordEvent, false);
}
}
@@ -79,12 +79,12 @@ function test()
pressAccessKey('a');
shouldBe('dispatchedEvent("focus")', '["inputE"]');
- getNodeInTreeOfTrees('shadowC/inputD').focus();
+ getNodeInComposedTree('shadowC/inputD').focus();
clearEventRecords();
pressAccessKey('a');
shouldBe('dispatchedEvent("focus")', '["inputE"]');
- getNodeInTreeOfTrees('shadowC/shadowF/inputG').focus();
+ getNodeInComposedTree('shadowC/shadowF/inputG').focus();
clearEventRecords();
pressAccessKey('a');
shouldBe('dispatchedEvent("focus")', '["inputE"]');
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/dom/shadow/attr-dir-inherit.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698