summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flex-grow-007.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flex-grow-007.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/flex-grow-007.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flex-grow-007.html b/testing/web-platform/tests/css/css-flexbox/flex-grow-007.html
new file mode 100644
index 0000000000..79a8a47db3
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/flex-grow-007.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Flexbox Test: flex-grow - less than one</title>
+<link rel="help" title="7.3.1. The 'flex-grow' property" href="http://www.w3.org/TR/css-flexbox-1/#flex-grow-property">
+<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
+<meta name="assert" content="Test checks that remaining free space is calculated from 'flex-grow' set to positive number less than one.">
+<style>
+ .container {
+ background: red;
+ height: 50px;
+ width: 100px;
+ }
+ #test1, #test2 {
+ display: flex;
+ width: 190px;
+ }
+ #test1 > div, #test2 > div {
+ background: green;
+ height: 50px;
+ }
+ #test1 > div {
+ flex-grow: 0.1;
+ width: 90px;
+ }
+ #test2 > div {
+ flex-grow: 0.05;
+ width: 45px;
+ }
+</style>
+<body>
+ <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
+ <div class="container">
+ <div id="test1">
+ <div></div>
+ </div>
+ </div>
+ <div class="container">
+ <div id="test2">
+ <div></div>
+ <div></div>
+ </div>
+ </div>
+</body>