Open
Bug 990105
Opened 11 years ago
Updated 3 years ago
printing blank space when an iframe can't be printed in the remaining space in a page.
Categories
(Core :: Printing: Output, defect)
Tracking
()
UNCONFIRMED
People
(Reporter: yujiefeng87, Unassigned)
Details
Attachments
(1 file)
|
585 bytes,
application/zip
|
Details |
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/33.0.1750.154 Safari/537.36
Steps to reproduce:
1. Download and Unzip the attached TestPage.zip
2. Open the testprint.html in Firefox.
3. You will see four iframes loaded in the page.
4. Go to Print Preview.
Actual results:
You will see the third iframe jumps to the next page which leaves a lot of white space on the previous page.
Expected results:
The third iframe should be displayed immediately following the second iframe, and the third iframe itself breaks into two pages for display.
Comment 1•11 years ago
|
||
Hi Jeff,
I am not sure anyone who want to download the file. How about you paste the code in this bug or pastebin? It is just a comment.
Michael
Flags: needinfo?(yujiefeng87)
The source for the test files in the attached TestPage.zip
----------------------
testprint.html
<html>
<head>
</head>
<body>
<table>
<tbody>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</tr>
<tr>
<td colspan="4"><iframe src="testprintiframe.html"
height="200px">
<p>Your browser does not support iframes.</p>
</iframe></td>
</tr>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</tr>
<tr>
<td colspan="4"><iframe src="testprintiframe.html"
height="200px">
<p>Your browser does not support iframes.</p>
</iframe></td>
</tr>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</tr>
<tr>
<td colspan="4"><iframe src="testprintiframe.html"
height="500px">
<p>Your browser does not support iframes.</p>
</iframe></td>
</tr>
<tr>
<td>col 1</td>
<td>col 2</td>
<td>col 3</td>
<td>col 4</td>
</tr>
<tr>
<td colspan="4"><iframe src="testprintiframe.html"
height="200px">
<p>Your browser does not support iframes.</p>
</iframe></td>
</tr>
</tbody>
</table>
</body>
</html>
---------------------
testprintiframe.html
<html>
<head>
</head>
<body>
<h1>I am inside an iframe</h1>
</body>
</html>
-------------------
Thanks,
Jeff
Flags: needinfo?(yujiefeng87)
Hi,
Is there any update on this print issue? Could I push it to a higher priority to get it resolved? This iframe print issue is severely impacting the project I am doing.
Thanks a lot,
Jeff
Updated•11 years ago
|
Component: Untriaged → Printing: Output
Product: Firefox → Core
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•