summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-02-13 10:55:42 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-03-05 13:33:38 +0000
commit248b70b82a40964d5594eb04feca0fa36716185d (patch)
tree44e31d9dd0ac2cb79f48633eefbc5496e013c347 /chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html
parentcabfcdd1db482729ded525feae56911a99792773 (diff)
BASELINE: Update Chromium to 79.0.3945.147
And new simplified snapshot filter Change-Id: I7c692bedd5b3833f05565bd6f6939115350b233a Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html')
-rw-r--r--chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html b/chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html
deleted file mode 100644
index f185cba1363..00000000000
--- a/chromium/chrome/browser/resources/settings/privacy_page/security_keys_pin_field.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<link rel="import" href="chrome://resources/html/polymer.html">
-
-<link rel="import" href="chrome://resources/html/i18n_behavior.html">
-<link rel="import" href="chrome://resources/cr_elements/cr_input/cr_input.html">
-<link rel="import" href="chrome://resources/cr_elements/cr_icon_button/cr_icon_button.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-announcer/iron-a11y-announcer.html">
-<link rel="import" href="../i18n_setup.html">
-<link rel="import" href="../settings_shared_css.html">
-
-<dom-module id="settings-security-keys-pin-field">
- <template>
- <style include="settings-shared">
- cr-input {
- display: inline-block;
- padding-inline-end: 2em;
- --cr-input-width: 8em;
- }
- </style>
-
- <cr-input id="pin" value="{{value}}" minLength="4"
- maxLength="255" spellcheck="false"
- on-input="onPINInput_"
- invalid="[[isNonEmpty_(error)]]"
- label="[[label]]" tabindex="0"
- type$="[[inputType_(inputVisible_)]]"
- error-message="[[error]]">
- <cr-icon-button slot="suffix" id="showButton"
- class$="[[showButtonClass_(inputVisible_)]]"
- title="[[showButtonTitle_(inputVisible_)]]"
- focus-row-control focus-type="showPassword"
- on-click="showButtonClick_"></cr-icon-button>
- </cr-input>
- </template>
- <script src="security_keys_pin_field.js"></script>
-</dom-module>