| 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"]');
|
|
|