summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html b/testing/web-platform/tests/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html
new file mode 100644
index 0000000000..5174bd1d9f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>CSS Flex-basis Test</title>
+ <link rel="author" title="Tomek Wytrebowicz" href="mailto:tomalecpub+github@gmail.com">
+ <style type="text/css">
+ .flex {
+ width: 200px;
+ height: 200px;
+ }
+
+ .flex > * {
+ background: green;
+ height: 200px;
+ width: 100px;
+ overflow: scroll;
+ display: inline-block;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if there is a filled green square with scrollbars and <strong>no red</strong>.</p>
+
+ <div class="flex">
+ <div></div><div></div>
+ </div>
+ </body>
+</html>