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

Unified Diff: third_party/polymer/components/paper-input/paper-input-behavior.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/paper-input/paper-input-behavior.html
diff --git a/third_party/polymer/components/paper-input/paper-input-behavior.html b/third_party/polymer/components/paper-input/paper-input-behavior.html
index 20a166546d78d64c38b9309222ce6d9feec99a6a..9bb10019aac4ea1d5f9ef0860872450bb521a1f5 100644
--- a/third_party/polymer/components/paper-input/paper-input-behavior.html
+++ b/third_party/polymer/components/paper-input/paper-input-behavior.html
@@ -446,13 +446,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
* Forward focus to inputElement. Overriden from IronControlState.
*/
_focusBlurHandler: function(event) {
- if (this._shiftTabPressed)
- return;
-
Polymer.IronControlState._focusBlurHandler.call(this, event);
// Forward the focus to the nested input.
- if (this.focused)
+ if (this.focused && !this._shiftTabPressed)
this._focusableElement.focus();
},

Powered by Google App Engine
This is Rietveld 408576698