| Index: third_party/WebKit/LayoutTests/css3/flexbox/css-properties.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/css-properties.html b/third_party/WebKit/LayoutTests/css3/flexbox/css-properties.html
|
| index 344129f8a43d51fe3f52e1cd7376f7221a2d7737..b95bb5a14f55dec15088df2c3b7e19b67347aed1 100644
|
| --- a/third_party/WebKit/LayoutTests/css3/flexbox/css-properties.html
|
| +++ b/third_party/WebKit/LayoutTests/css3/flexbox/css-properties.html
|
| @@ -75,6 +75,10 @@ flexbox.style.justifyContent = 'space-between';
|
| shouldBeEqualToString('flexbox.style.justifyContent', 'space-between');
|
| shouldBeEqualToString('window.getComputedStyle(flexbox, null).justifyContent', 'space-between');
|
|
|
| +flexbox.style.justifyContent = 'space-evenly';
|
| +shouldBeEqualToString('flexbox.style.justifyContent', 'space-evenly');
|
| +shouldBeEqualToString('window.getComputedStyle(flexbox, null).justifyContent', 'space-evenly');
|
| +
|
| flexbox.style.justifyContent = '';
|
| shouldBeEqualToString('flexbox.style.justifyContent', '');
|
| shouldBeEqualToString('window.getComputedStyle(flexbox, null).justifyContent', 'normal');
|
| @@ -301,6 +305,10 @@ flexbox.style.alignContent = 'space-around';
|
| shouldBeEqualToString('flexbox.style.alignContent', 'space-around');
|
| shouldBeEqualToString('window.getComputedStyle(flexbox, null).alignContent', 'space-around');
|
|
|
| +flexbox.style.alignContent = 'space-evenly';
|
| +shouldBeEqualToString('flexbox.style.alignContent', 'space-evenly');
|
| +shouldBeEqualToString('window.getComputedStyle(flexbox, null).alignContent', 'space-evenly');
|
| +
|
| flexbox.style.alignContent = 'stretch';
|
| shouldBeEqualToString('flexbox.style.alignContent', 'stretch');
|
| shouldBeEqualToString('window.getComputedStyle(flexbox, null).alignContent', 'stretch');
|
|
|