blob: c92380523b0ce5588668450fabe076946cc5b0e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html class="reftest-paged">
<head>
<style>
@page {
/*
* Test huge margins, they should be reset back the default margin size.
*/
margin: 10in;
}
* {
margin: 0;
padding: 0;
}
div {
width: 100%;
border: 0.25in solid green;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|