From 8e6c4e17df01f3c58150f707496d7ef22b6d3446 Mon Sep 17 00:00:00 2001 From: Christian Biesinger Date: Tue, 2 Aug 2016 15:08:36 -0400 Subject: [PATCH] Fix flex-grow-006.html The test wants to make sure that "any positive flex factor" grows the flex item to full size, but fractional flex factors < 1 do not do that. Instead, let's use 1.5 here. --- css-flexbox-1/flex-grow-006.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css-flexbox-1/flex-grow-006.html b/css-flexbox-1/flex-grow-006.html index b000951084..e0ac6fb21e 100644 --- a/css-flexbox-1/flex-grow-006.html +++ b/css-flexbox-1/flex-grow-006.html @@ -20,7 +20,7 @@ width: 25px; } #test1 { - flex-grow: 0.5; + flex-grow: 1.5; } #test2 { flex-grow: 2;