diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/display-list/1418945-1-ref.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/display-list/1418945-1-ref.html b/layout/reftests/display-list/1418945-1-ref.html new file mode 100644 index 0000000000..f1498c931d --- /dev/null +++ b/layout/reftests/display-list/1418945-1-ref.html @@ -0,0 +1,24 @@ +<html> +<head> +<style> + div { + width: 100px; + height: 100px; + position:relative; + } + #first { + background-color: red; + z-index: 1; + } + #second { + top: -50px; + background-color: green; + z-index: 1; + } +</style> +</head> +<body> + <div id="first"></div> + <div id="second"></div> +</body> +</html> |