Chromium Code Reviews| Index: LayoutTests/fullscreen/full-screen-zIndex-after-expected.html |
| diff --git a/LayoutTests/fullscreen/full-screen-zIndex-after-expected.html b/LayoutTests/fullscreen/full-screen-zIndex-after-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f1bab0c99daaf1317a2d4438906903c39113cb25 |
| --- /dev/null |
| +++ b/LayoutTests/fullscreen/full-screen-zIndex-after-expected.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + #block1 { |
| + width: 200px; |
| + height: 100px; |
| + border: 4px solid darkgreen; |
| + background-color: green; |
| + } |
| + #block2 { |
| + width: 100px; |
| + height: 50px; |
| + border: 4px solid darkred; |
| + background-color: red; |
| + z-index: 200; |
| + position: relative; |
| + left: 50px; |
| + top: 25px; |
| + } |
| + #block3 { |
| + z-index: 500; |
| + position: relative; |
| + } |
| +</style> |
| +<div id="block2"></div> |
| +<div id="block3"> |
| + <div id="block1"></div> |
| +</div> |
| +<div>END OF TEST</div> |