Closed
Bug 1363148
Opened 8 years ago
Closed 8 years ago
CSS size property in @page not recognized anymore
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: jmichae3, Unassigned)
References
()
Details
(Keywords: regression, site-compat)
User Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0
Build ID: 20170413192749
Steps to reproduce:
<style>
@media print {
@page {
size:landscape; /*print in landscape because of width of table*/
}
}
</style>
Actual results:
Unknown property ‘size’. Declaration dropped. backup-time-cost.html:182:6
Expected results:
should have worked, part of previously implemented CSS3.
Updated•8 years ago
|
Has Regression Range: --- → no
Component: Untriaged → CSS Parsing and Computation
Keywords: regression,
regressionwindow-wanted
Product: Firefox → Core
Comment 1•8 years ago
|
||
Looks like it has been removed with Firefox 44 in Bug 1215702. I have a site compat note for the change: https://www.fxsitecompat.com/en-CA/docs/2015/several-unimplemented-css-properties-have-been-dropped/
Just WONTFIX maybe?
Status: UNCONFIRMED → NEW
Has Regression Range: no → ---
Ever confirmed: true
Flags: needinfo?(dbaron)
Keywords: regressionwindow-wanted → site-compat
See Also: → 1215702
Version: 53 Branch → Trunk
Updated•8 years ago
|
Summary: @page not recognized anymore → CSS size property in @page not recognized anymore
Right. This was never supported; we just removed the parsing code that we had which was not conformant to https://www.w3.org/TR/CSS/#responsible .
Status: NEW → RESOLVED
Closed: 8 years ago
Flags: needinfo?(dbaron)
Resolution: --- → WONTFIX
Comment hidden (abuse-reviewed) |
Reporter | ||
Comment 5•8 years ago
|
||
by the way, that's in CSS2.
here's the code example:
<style>
@media print {@page {size:landscape;}} /*print in landscape because of width of table*/
</style>
You need to log in
before you can comment on or make changes to this bug.
Description
•