Closed
Bug 679467
Opened 14 years ago
Closed 14 years ago
scratchpad doesn't display the value false
Categories
(DevTools :: General, defect, P2)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 10
People
(Reporter: allen, Assigned: harth)
References
Details
(Whiteboard: [fixed-in-fx-team])
Attachments
(1 file)
|
12.00 KB,
patch
|
rcampbell
:
review+
|
Details | Diff | Splinter Review |
The 'display' menu item does not display the values of false, null, "", etc. It appears to skip displaying all falsey values. This is not what I would want to see, as a user of this feature. Please display the actual value.
Repo:
1) open a scratchpad
2) type: false
3) select it and then select the 'display' menu item
4) no output appears
Comment 1•14 years ago
|
||
We're doing developer tool prioritization, filter on 'brontozaur'
to ignore the spam.
Priority: -- → P2
| Assignee | ||
Updated•14 years ago
|
Assignee: nobody → fayearthur+bugs
| Assignee | ||
Comment 3•14 years ago
|
||
I imagine we'd want to do this for the 'inspect' command too?
| Assignee | ||
Comment 4•14 years ago
|
||
This patch makes scratchpad inspect and display all falsy values.
| Assignee | ||
Updated•14 years ago
|
Attachment #571479 -
Flags: review?(rcampbell)
Comment 5•14 years ago
|
||
Comment on attachment 571479 [details] [diff] [review]
display falsy values
In test file:
+function testFalsy(sp)
+{
+ gScratchpadWindow.removeEventListener("load", arguments.callee, false);
should removeEventListener("load", testFalsy, false) as arguments.callee is going away.
Comment 6•14 years ago
|
||
Comment on attachment 571479 [details] [diff] [review]
display falsy values
looks good!
Attachment #571479 -
Flags: review?(rcampbell) → review+
Updated•14 years ago
|
Status: NEW → ASSIGNED
Whiteboard: [land-in-fx-team]
Comment 7•14 years ago
|
||
and the REAL push:
https://hg.mozilla.org/integration/fx-team/rev/0447ea74c626
Whiteboard: [land-in-fx-team] → [fixed-in-fx-team]
Comment 8•14 years ago
|
||
and the REAL push to m-c :)
https://hg.mozilla.org/mozilla-central/rev/0447ea74c626
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 10
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•