Closed
Bug 93156
Opened 24 years ago
Closed 21 years ago
Implement 'opacity' according to the spec (transparency)
Categories
(Core :: CSS Parsing and Computation, enhancement, P2)
Core
CSS Parsing and Computation
Tracking
()
VERIFIED
FIXED
mozilla1.7beta
People
(Reporter: pierre, Assigned: dbaron)
References
()
Details
(Keywords: css3, Whiteboard: [patch])
Attachments
(1 file)
9.02 KB,
patch
|
bzbarsky
:
review+
roc
:
superreview+
|
Details | Diff | Splinter Review |
This bug is extracted from bug 58517. Dbaron wrote:
The '-moz-opacity' property doesn't match the recommendation for 'opacity':
'-moz-opacity' is inherited and applies only to any painting done for the element
(at least it did the last time I checked)
'opacity' is not inherited and should apply to the entire subtree drawn by the
element
The former is totally wrong and only works reasonably in certain simple cases.
--------------
I looked into the way we use '-moz-opacity' and it doesn't seem that we are
already taking advantage of the difference between the two definitions. So,
unlike what I wrote in bug 58517 [2001-07-17 16:31], the way to go would be to
fix '-moz-opacity' when we can, and rename it to 'opacity' as soon as the spec
becomes a recommendation.
Updated•23 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → Future
Updated•23 years ago
|
Severity: normal → enhancement
Summary: [rfe] Implement 'opacity' according to the spec → Implement 'opacity' according to the spec
Comment 2•22 years ago
|
||
What are the current plans - intending to further develop -moz-opacity or
focus on being according to the spec?
Comment 3•22 years ago
|
||
URL of [now published] spec should be: http://www.w3.org/TR/css3-color/#transparency
(sorry, i don't have the privs to add it myself.)
Updated•22 years ago
|
Comment 4•22 years ago
|
||
The CSS3 Color module has now moved to Candidate Recommendation. Can we proceed
to fix this bug now?
Assignee | ||
Comment 5•22 years ago
|
||
This is basically a duplicate of bug 212366, but this can cover renaming
'-moz-opacity' to 'opacity' while still supporting '-moz-opacity' (at least for
a while).
Depends on: 212366
Assignee | ||
Comment 6•21 years ago
|
||
Taking to cover the renaming, which should wait until it works on Mac.
Assignee: kmcclusk → dbaron
Status: ASSIGNED → NEW
Component: GFX → Style System (CSS)
QA Contact: chrispetersen → ian
adding transparency synonym
Summary: Implement 'opacity' according to the spec → Implement 'opacity' according to the spec (transparency)
Assignee | ||
Comment 8•21 years ago
|
||
I've tested that each of the following:
javascript:void(alert(document.body.style.Opacity));
javascript:void(alert(document.body.style.MozOpacity));
work both without any of the following and after each of them:
javascript:void(document.body.setAttribute("style", "opacity: 0.8"));
javascript:void(document.body.setAttribute("style", "-moz-opacity: 0.6"));
javascript:void(document.body.style.Opacity = "0.2");
javascript:void(document.body.style.MozOpacity = "0.4");
Assignee | ||
Updated•21 years ago
|
Attachment #142085 -
Flags: superreview?(roc)
Attachment #142085 -
Flags: review?(bzbarsky)
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Priority: -- → P2
Whiteboard: [patch]
Target Milestone: Future → mozilla1.7beta
Comment on attachment 142085 [details] [diff] [review]
patch
It doesn't quite work according to spec yet (e.g., multiple boxes for the same
element aren't collapsed into the same opacity group) but I agree it's good
enough.
Attachment #142085 -
Flags: superreview?(roc) → superreview+
![]() |
||
Comment 10•21 years ago
|
||
Comment on attachment 142085 [details] [diff] [review]
patch
r=bzbarsky.
Attachment #142085 -
Flags: review?(bzbarsky) → review+
Assignee | ||
Comment 11•21 years ago
|
||
Fix checked in to trunk, 2004-02-23 22:48 / 23:37 -0800.
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Comment 12•21 years ago
|
||
Robert, is there any bug related to that problem?
Comment 13•21 years ago
|
||
+ attribute DOMString Opacity;
Shouldn't that be 'opacity'? (lowercase)
Comment 14•21 years ago
|
||
Folks, I believe it should be "opacity" and not "Opacity", like this:
ElemRef.style.opacity = strValue;
My 2 cents
oops yeah, missed that. It should be lowercase.
Zbigniew, I don't think there's a bug on that. I'm planning to fix it as part of
some significant painting changes that I'm working on.
Assignee | ||
Comment 16•21 years ago
|
||
Case corrected.
Updated•21 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•