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

Unified Diff: third_party/polymer/components/iron-overlay-behavior/test/test-overlay2.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 6 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/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];
+ }
});

Powered by Google App Engine
This is Rietveld 408576698