summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1743533-1-helper.html
blob: abfc2d735f6a8cbf8526fa00a4729c6592823068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<style>
:root { color-adjust: exact }
html { background: green; }
</style>
</head>
<body>
<!-- just need some content with large height, use text because bg colors don't print by default -->
<script>
for (let i = 0; i < 1000; i++) {
	document.body.appendChild(document.createTextNode("content"));
	document.body.appendChild(document.createElement("br"));
}
</script>
</body>
</html>