Lost printing content if specify the position:absolute and transform style.
Categories
(Core :: Printing: Output, defect)
Tracking
()
People
(Reporter: azlimited2017, Unassigned)
References
(Depends on 1 open bug, Blocks 1 open bug)
Details
(Whiteboard: [layout:print-triage:p1][frag2020])
Attachments
(1 file)
31.93 KB,
application/zip
|
Details |
Updated•8 years ago
|
Comment 1•8 years ago
|
||
Comment 2•8 years ago
|
||
Comment 3•8 years ago
|
||
Updated•6 years ago
|
![]() |
||
Updated•5 years ago
|
![]() |
||
Updated•5 years ago
|
Updated•3 years ago
|
Comment 4•2 years ago
|
||
Clear a needinfo that is pending on an inactive user.
Inactive users most likely will not respond; if the missing information is essential and cannot be collected another way, the bug maybe should be closed as INCOMPLETE
.
For more information, please visit BugBot documentation.
Comment 5•1 year ago
•
|
||
Firefox and Chrome give the same results (only showing content on page 1) for the attached zipped-up testcase.
Looking at the styles involved, it looks like this behavior (clipping anything after the first page) is what the testcase is asking for, perhaps by accident -- it has the following print-specific CSS:
@media print {
#PreviewWrapper {
overflow: hidden;
height: 100%;
The height ends up resolving to the page height in this case, I think. So this element (which wraps the tabular content here) is 1 page tall, and explicitly clips any content that extends beyond that.
If I remove overflow:hidden
from that CSS rule there, then I see all of the content, in current Nightly at least.
So I think this isn't really a bug, and it's purely arising from that ^ above-quoted CSS.
Description
•