Closed
Bug 775046
Opened 14 years ago
Closed 14 years ago
css3 transform skew issue
Categories
(Core :: CSS Parsing and Computation, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 747637
People
(Reporter: s.suvoroff, Unassigned)
References
Details
Attachments
(1 file)
|
349.46 KB,
image/jpeg
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20100101 Firefox/14.0.1
Build ID: 20120713134347
Steps to reproduce:
After installing FF 14.0.1 I checked a web-page with DIV styled like
{
-webkit-transform: skew(28deg, 0);
-moz-transform: skew(28deg, 0);
-ms-transform: skew(28deg, 0);
-o-transform: skew(28deg, 0);
transform: skew(28deg, 0);
}
Actual results:
css3 transform style doesn't work
Expected results:
Div must have changes, but it doesn't
Attachment #643316 -
Attachment description: 1342611043-clip-131kb[1].jpg_nocache=1 → 1342611043-clip-131kb[1].jpg
Attachment #643316 -
Attachment mime type: text/plain → image/jpeg
| Reporter | ||
Comment 2•14 years ago
|
||
Sure, http://jsfiddle.net/deRxm/1/
For example, check in the last version of Firefox and Chrome.
It's the normal behavior because skew() transformation function has been removed, see bug 734953.
Blocks: 734953
Status: UNCONFIRMED → NEW
Component: Untriaged → Style System (CSS)
Ever confirmed: true
Product: Firefox → Core
| Reporter | ||
Comment 4•14 years ago
|
||
Thanks.
"transform: skewX(angle);" instead.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → INVALID
Yes, "-moz-transform: skewX(28deg);" will fix your issue.
In addition, note that CSS3 transforms will be unprefixed in FF16 (see bug 745523).
Comment 6•13 years ago
|
||
We've decided we're going to restore skew() support.
Resolution: INVALID → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•