summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/percentage-heights-004-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/percentage-heights-004-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/percentage-heights-004-ref.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/percentage-heights-004-ref.html b/testing/web-platform/tests/css/css-flexbox/percentage-heights-004-ref.html
new file mode 100644
index 0000000000..7c1e585813
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/percentage-heights-004-ref.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html>
+<title>CSS Flexbox: Percentages in stretched container</title>
+<link rel="author" title="Google" href="https://www.google.com/" />
+
+<style>
+#outer {
+ height: 10em;
+ display: inline-block;
+ background: tan;
+ vertical-align: top;
+}
+
+#middle {
+ overflow-x: scroll;
+ height: 100%;
+}
+
+#inner {
+ width: 200px;
+ height: 100%;
+ background: green;
+}
+
+#outer2 {
+ height: 10em;
+ display: inline-block;
+ background: tan;
+}
+
+#middle2 {
+ overflow-x: scroll;
+ height: 10em;
+}
+
+#inner2 {
+ width: 200px;
+ height: 100%;
+ background: green;
+}
+</style>
+
+<p>You should not see tan (except perhaps as the background of a horizontal
+ scrollbar), and you should not see a vertical scrollbar.</p>
+
+<div id="outer">
+ <div id="middle">
+ <div id="inner">
+ hello
+ </div>
+ </div>
+</div>
+
+<div id="outer2">
+ <div id="middle2">
+ <div id="inner2">
+ hello
+ </div>
+ </div>
+</div>
+