<!DOCTYPE html>
<script>
if (window.testRunner) {
testRunner.setShouldCenterAndShrinkToFitPaper(false);
}
</script>
<style>
@page {
size: 400px 300px;
margin: 0;
}
body {
margin: 0;
}
.square {
position: absolute;
box-sizing: border-box;
border: 5px solid lime;
width: 50px;
height: 50px;
background: green;
}
</style>
<div class="square" style="left:0; top:0;"></div>
<div class="square" style="right:0; top:0;"></div>
<div class="square" style="right:0; bottom:0;"></div>
<div class="square" style="left:0; bottom:0;"></div>
<div style="box-sizing:border-box; margin-left:50px; margin-top:50px; width:300px; height:200px; border:5px solid;"></div>