Closed
Bug 686705
Opened 14 years ago
Closed 14 years ago
Source Editor with the textarea fallback displays undefined without a placeholderText
Categories
(DevTools :: General, defect)
DevTools
General
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 9
People
(Reporter: past, Assigned: past)
Details
(Whiteboard: [fixed-in-fx-team])
Attachments
(1 file, 1 obsolete file)
1.90 KB,
patch
|
Details | Diff | Splinter Review |
When creating a SourceEditor without a placeholderText in the configuration, we get the string "undefined" when using a textarea. Also a warning is displayed in case strict mode is enabled:
JavaScript strict warning: resource:///modules/source-editor-textarea.jsm, line 132: reference to undefined property aConfig.placeholderText
Assignee | ||
Updated•14 years ago
|
Assignee: nobody → past
Status: NEW → ASSIGNED
Comment 2•14 years ago
|
||
Comment on attachment 560182 [details] [diff] [review]
Working patch
Review of attachment 560182 [details] [diff] [review]:
-----------------------------------------------------------------
Hah, I missed this when I did my patches. Thanks for the fix!
::: browser/devtools/sourceeditor/source-editor-textarea.jsm
@@ +129,5 @@
>
> this._textbox.style.MozTabSize = this._tabSize;
>
> + this._textbox.setAttribute("value", aConfig.placeholderText ?
> + aConfig.placeholderText : "");
Perhaps it would be more concise to do:
this._textbox.setAttribute("value", aConfig.placeholderText || "");
Attachment #560182 -
Flags: review?(mihai.sucan) → review+
Assignee | ||
Comment 3•14 years ago
|
||
(In reply to Mihai Sucan [:msucan] from comment #2)
> Comment on attachment 560182 [details] [diff] [review]
> Working patch
>
> Review of attachment 560182 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> Hah, I missed this when I did my patches. Thanks for the fix!
>
> ::: browser/devtools/sourceeditor/source-editor-textarea.jsm
> @@ +129,5 @@
> >
> > this._textbox.style.MozTabSize = this._tabSize;
> >
> > + this._textbox.setAttribute("value", aConfig.placeholderText ?
> > + aConfig.placeholderText : "");
>
> Perhaps it would be more concise to do:
>
> this._textbox.setAttribute("value", aConfig.placeholderText || "");
Absolutely.
Attachment #560182 -
Attachment is obsolete: true
Updated•14 years ago
|
Whiteboard: [land-in-fx-team]
Comment 4•14 years ago
|
||
Comment on attachment 560363 [details] [diff] [review]
[in-fx-team] Patch v2
Pushed:
https://hg.mozilla.org/integration/fx-team/rev/01ef83aa3f02
Attachment #560363 -
Attachment description: Patch v2 → [in-fx-team] Patch v2
Updated•14 years ago
|
Whiteboard: [land-in-fx-team] → [fixed-in-fx-team]
Comment 5•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 9
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•