| Index: chrome/browser/resources/options/editable_text_field.js
|
| diff --git a/chrome/browser/resources/options/editable_text_field.js b/chrome/browser/resources/options/editable_text_field.js
|
| index b895613007ea11c3690faef530b596dd528dc297..4be9f4b95ee46b9ee9b4378ac1d1316bc055fe23 100644
|
| --- a/chrome/browser/resources/options/editable_text_field.js
|
| +++ b/chrome/browser/resources/options/editable_text_field.js
|
| @@ -222,15 +222,15 @@ cr.define('options', function() {
|
|
|
| var container = this.ownerDocument.createElement('div');
|
|
|
| - var textEl = /** @type {HTMLElement} */(
|
| - this.ownerDocument.createElement('div'));
|
| + var textEl =
|
| + /** @type {HTMLElement} */ (this.ownerDocument.createElement('div'));
|
| textEl.className = 'static-text';
|
| textEl.textContent = text;
|
| textEl.setAttribute('displaymode', 'static');
|
| this.appendChild(textEl);
|
| this.staticText_ = textEl;
|
|
|
| - var inputEl = /** @type {HTMLElement} */(
|
| + var inputEl = /** @type {HTMLElement} */ (
|
| this.ownerDocument.createElement('input'));
|
| inputEl.className = 'editable-text';
|
| inputEl.type = 'text';
|
|
|