Closed
Bug 659999
Opened 14 years ago
Closed 13 years ago
Add a meterbar and meterchunk appearances
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
FIXED
mozilla16
People
(Reporter: Vincent.Lamotte, Assigned: yoan.teboul)
References
(Blocks 1 open bug)
Details
(Keywords: dev-doc-complete)
Attachments
(1 file, 3 obsolete files)
4.35 KB,
patch
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1
Build Identifier:
Introduce a new meterbar choice for -moz-appearance.
Reproducible: Always
Reporter | ||
Updated•14 years ago
|
Reporter | ||
Updated•14 years ago
|
Updated•14 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Assignee | ||
Comment 1•14 years ago
|
||
Added meterbar and meterchunk moz-appearances, and renamed a fonction in xpwidgets which can now be used for both meter and progress elements.
Comment 2•14 years ago
|
||
Comment on attachment 536847 [details] [diff] [review]
patch_v1.0
You don't need the "-vertical" for meterbar and meterchunk.
>diff --git a/layout/style/nsCSSKeywordList.h b/layout/style/nsCSSKeywordList.h
>--- a/layout/style/nsCSSKeywordList.h
>+++ b/layout/style/nsCSSKeywordList.h
>@@ -328,16 +328,17 @@ CSS_KEY(lowercase, lowercase)
> CSS_KEY(ltr, ltr)
> CSS_KEY(manual, manual)
> CSS_KEY(margin-box, margin_box)
> CSS_KEY(matrix, matrix)
> CSS_KEY(medium, medium)
> CSS_KEY(menu, menu)
> CSS_KEY(menutext, menutext)
> CSS_KEY(message-box, message_box)
>+CSS_KEY(meter, meter)
Why is that needed?
>diff --git a/widget/src/xpwidgets/nsNativeTheme.cpp b/widget/src/xpwidgets/nsNativeTheme.cpp
>--- a/widget/src/xpwidgets/nsNativeTheme.cpp
>+++ b/widget/src/xpwidgets/nsNativeTheme.cpp
>@@ -467,18 +468,19 @@ nsNativeTheme::IsIndeterminateProgress(n
> return aEventStates.HasState(NS_EVENT_STATE_INDETERMINATE);
> }
>
> return aFrame->GetContent()->AttrValueIs(kNameSpaceID_None, nsWidgetAtoms::mode,
> NS_LITERAL_STRING("undetermined"),
> eCaseMatters);
> }
>
>+// progressbar and meterbar:
> PRBool
>-nsNativeTheme::IsVerticalProgress(nsIFrame* aFrame)
>+nsNativeTheme::IsVerticalProgressMeter(nsIFrame* aFrame)
I would prefer to not change that for the moment. One reason is that the name is confusing because "progressmeter" is a XUL element. You could rename that "IsVerticalProgressOrMeter" to fix this but do we really need this new method for the moment? If you really want to add it, I think "IsVerticalFormControl" would be a better name given that other form controls might use the same system. And if you change the name, change the callers too ;)
Assignee | ||
Comment 3•14 years ago
|
||
Mounir's comment taken into account.
Attachment #536847 -
Attachment is obsolete: true
Comment 4•14 years ago
|
||
Comment on attachment 537125 [details] [diff] [review]
patch_v1.1
>diff --git a/layout/style/forms.css b/layout/style/forms.css
> ::-moz-meter-bar {
> display: inline-block ! important;
> float: none ! important;
> position: static ! important;
> overflow: visible ! important;
>- /* Add a new moz-appearance : Bug 660232
>- * -moz-appearance: meterchunk;
>- */
>+ -moz-appearance: meterchunk;
Could you put this on top of the block? and leave a blank line before "display: inline-block"?
f=me with that
Attachment #537125 -
Flags: review?(roc)
Attachment #537125 -
Flags: feedback+
Assignee | ||
Comment 5•14 years ago
|
||
Attachment #537125 -
Attachment is obsolete: true
Attachment #537125 -
Flags: review?(roc)
Attachment #537142 -
Flags: review+
Updated•14 years ago
|
Summary: Add a -moz-appearance: meterbar → Add a meterbar and meterchunk appearances
Updated•14 years ago
|
Assignee: nobody → yoan.teboul
Status: NEW → ASSIGNED
Comment 7•14 years ago
|
||
I don't know if the appearances are listed somewhere, in the doubt, adding 'dev-doc-needed'.
Keywords: dev-doc-needed
Assignee | ||
Comment 8•14 years ago
|
||
Attachment #537142 -
Attachment is obsolete: true
Comment 9•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla16
Comment 10•12 years ago
|
||
Added the two values in:
https://developer.mozilla.org/en-US/docs/CSS/-moz-appearance
and updated
https://developer.mozilla.org/en-US/docs/Firefox_16_for_developers
Keywords: dev-doc-needed → dev-doc-complete
You need to log in
before you can comment on or make changes to this bug.
Description
•