Closed
Bug 193684
Opened 22 years ago
Closed 20 years ago
page breaking done incorrectly when printing
Categories
(Core :: Printing: Output, defect)
Tracking
()
RESOLVED
EXPIRED
People
(Reporter: grignard, Assigned: rods)
Details
Attachments
(1 file)
|
30.12 KB,
text/html
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3b) Gecko/20030210
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3b) Gecko/20030210
The CSS "@media print" rules are not rendered correct while printing. The page
doesn't breaks as the document should be more than 1 page. The following is the
css rules:
div#all { position:absolute; font-size:10pt; left:5px; right:5px; top:25px;
bottom:5px; padding:5px; border-width:1px; border-color:black;
border-style:solid; overflow:auto; background:white; }
div#shadow { position:absolute; left:7px; right:3px; top:27px; bottom:3px;
background:silver; overflow:auto; }
div#status { font-size:10pt; padding-top:5px; padding-right:3px; text-align:right; }
@media print{
div#status { display:none; }
div#shadow { display:none; }
div#all { position:static; border-width:0px; top:0px; left:0px; right:0px;
bottom:0px; padding:0px; overflow:visible; }
}
Reproducible: Always
Steps to Reproduce:
1.hit print button
2.print the document
3.
Actual Results:
The document did not been printed correctly. There's no page break when the
document is more than 1 page.
Expected Results:
The document should be printed correctly. There should be page breaks when the
document is more than 1 page.
Comment 1•22 years ago
|
||
Is there an example document showing the problem? If so, please link to it in
the URL field or attach it to this bug using
http://bugzilla.mozilla.org/attachment.cgi?bugid=193684&action=enter
| Reporter | ||
Comment 2•22 years ago
|
||
It's the page that printing goes wrong. It's in Chinese. Big5 encoding.
Comment 3•22 years ago
|
||
Doesn't seem to be a problem with the @media rules -- they get applied
correctly... (the table may not be splitting correctly; a minimal testcase would
be nice).
Summary: The CSS "@media print" rules are not rendered correct while printing → page breaking done incorrectly when printing
Comment 4•20 years ago
|
||
This is an automated message, with ID "auto-resolve01".
This bug has had no comments for a long time. Statistically, we have found that
bug reports that have not been confirmed by a second user after three months are
highly unlikely to be the source of a fix to the code.
While your input is very important to us, our resources are limited and so we
are asking for your help in focussing our efforts. If you can still reproduce
this problem in the latest version of the product (see below for how to obtain a
copy) or, for feature requests, if it's not present in the latest version and
you still believe we should implement it, please visit the URL of this bug
(given at the top of this mail) and add a comment to that effect, giving more
reproduction information if you have it.
If it is not a problem any longer, you need take no action. If this bug is not
changed in any way in the next two weeks, it will be automatically resolved.
Thank you for your help in this matter.
The latest beta releases can be obtained from:
Firefox: http://www.mozilla.org/projects/firefox/
Thunderbird: http://www.mozilla.org/products/thunderbird/releases/1.5beta1.html
Seamonkey: http://www.mozilla.org/projects/seamonkey/
Comment 5•20 years ago
|
||
This bug has been automatically resolved after a period of inactivity (see above
comment). If anyone thinks this is incorrect, they should feel free to reopen it.
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → EXPIRED
You need to log in
before you can comment on or make changes to this bug.
Description
•