| Index: third_party/polymer/components/iron-overlay-behavior/test/test-overlay2.html
|
| diff --git a/third_party/polymer/components/iron-overlay-behavior/test/test-overlay2.html b/third_party/polymer/components/iron-overlay-behavior/test/test-overlay2.html
|
| index d9a3cf3a83cf70f90af5f9b050b4330624d66530..4036a70630d913772439aa1e70869da8fd7e536f 100644
|
| --- a/third_party/polymer/components/iron-overlay-behavior/test/test-overlay2.html
|
| +++ b/third_party/polymer/components/iron-overlay-behavior/test/test-overlay2.html
|
| @@ -25,7 +25,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| </style>
|
|
|
| <template>
|
| + <button id="first">first</button>
|
| <content></content>
|
| + <button id="last">last</button>
|
| </template>
|
|
|
| </dom-module>
|
| @@ -40,7 +42,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
| behaviors: [
|
| Polymer.IronOverlayBehavior
|
| - ]
|
| + ],
|
| +
|
| + get _focusableNodes() {
|
| + return [this.$.first, this.$.last];
|
| + }
|
|
|
| });
|
|
|
|
|