summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-layout-overflow-002-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-contain/contain-layout-overflow-002-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-contain/contain-layout-overflow-002-ref.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-contain/contain-layout-overflow-002-ref.html b/testing/web-platform/tests/css/css-contain/contain-layout-overflow-002-ref.html
new file mode 100644
index 0000000000..ba1c600d50
--- /dev/null
+++ b/testing/web-platform/tests/css/css-contain/contain-layout-overflow-002-ref.html
@@ -0,0 +1,57 @@
+<!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;
+ float:left;
+ background: lightblue;
+ }
+ .inner-lg-2 {
+ height: 200px;
+ width: 200px;
+ float:left;
+ }
+ .pass {
+ background: green;
+ }
+ .border {
+ border: 5px solid green;
+ }
+
+ </style>
+</head>
+<body>
+ <div class="outer">
+ <div class="inner-sm" style="float:left;"></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>