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