diff options
Diffstat (limited to 'layout/reftests/border-dotted/1752624-ref.html')
-rw-r--r-- | layout/reftests/border-dotted/1752624-ref.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/border-dotted/1752624-ref.html b/layout/reftests/border-dotted/1752624-ref.html new file mode 100644 index 0000000000..7d465c930b --- /dev/null +++ b/layout/reftests/border-dotted/1752624-ref.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> +<style> +#offset { + position: absolute; + left: 10px; + top: -150px; + width: 100px; + height: 100px; + border: 1px solid red; +} +#outline-box { + width: 100px; + height: 100px; + position: relative; +} +#overflow-box { + border: 4px solid blue; + width: 10px; + height: 400px; + left: 10px; + top: 100px; + position: absolute; +} +</style> +<body> +<div id="offset"> +<div id="outline-box"> +<div id="overflow-box"> +</div> +</div> +</div> +</body> +</html> |