diff options
Diffstat (limited to 'layout/reftests/pagination/inline-block-frag-offset-2-ref.html')
-rw-r--r-- | layout/reftests/pagination/inline-block-frag-offset-2-ref.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/layout/reftests/pagination/inline-block-frag-offset-2-ref.html b/layout/reftests/pagination/inline-block-frag-offset-2-ref.html new file mode 100644 index 0000000000..b43d876e2e --- /dev/null +++ b/layout/reftests/pagination/inline-block-frag-offset-2-ref.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html class="reftest-paged"> +<head> + <style> + @page { + size: 5in 3in; + margin: 0.5in; + } + + * { + margin: 0; + } + + .green { + display: block; + width: 1in; + height: 3in; + background-color: green; + transform: translateX(0.5in); + } + + .blue { + width: 1in; + height: 1in; + background-color: blue; + position: absolute; + top: 1.5in; + transform: translateX(0.5in); + z-index: 1; + } + </style> +</head> +<body> + <div class="green"></div> + <div class="blue"></div> +</body> +</html> |