diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-contain/contain-layout-overflow-001-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-contain/contain-layout-overflow-001-ref.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-layout-overflow-001-ref.html b/testing/web-platform/tests/css/css-contain/contain-layout-overflow-001-ref.html new file mode 100644 index 0000000000..61825fd454 --- /dev/null +++ b/testing/web-platform/tests/css/css-contain/contain-layout-overflow-001-ref.html @@ -0,0 +1,55 @@ +<!DOCTYPE HTML> +<html> +<head> + <meta charset="utf-8"> + <title>CSS Reftest Reference</title> + <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu"> + <style> + .outer { + height: 100px; + width: 100px; + } + .auto { + overflow: auto; + } + .inner-sm { + height: 50px; + width: 50px; + background: lightblue; + } + .inner-lg-1 { + height: 95px; + width: 95px; + background: lightblue; + } + .inner-lg-2 { + height: 200px; + width: 200px; + } + .pass { + background: green; + } + .border { + border: 5px solid green; + } + + </style> +</head> +<body> + <div class="outer"> + <div class="inner-sm"></div> + </div> + <br> + + <div class="outer auto"> + <div class="inner-lg-2 pass"> + </div> + </div> + <br> + + <div class="inner-sm border"> + <div class="inner-lg-1"> + </div> + </div> +</body> +</html> |