mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
18 lines
417 B
HTML
18 lines
417 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-print">
|
|
<body>
|
|
Something
|
|
<div>
|
|
<div style="width: 60%; float: left; border: 5px solid green;">
|
|
This should print on page 1
|
|
</div>
|
|
|
|
<!-- This just needs to be taller than a page -->
|
|
<div style="width: 30%; float: right; border: 5px solid purple; height: 3in">
|
|
</div>
|
|
|
|
<!-- This is needed! -->
|
|
<div style="clear: both"></div>
|
|
</body>
|
|
</html>
|