aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/css-tests/css-flexbox-1_dev/html
diff options
context:
space:
mode:
authorPu Xingyu <pu.stshine@gmail.com>2016-05-06 08:10:43 +0800
committerPu Xingyu <pu.stshine@gmail.com>2016-05-25 21:40:34 +0800
commita7733b38d40ff074a0d087597be4fdf3f216c517 (patch)
tree5fd3cb19096ee5ec617a573d4d170268a3632e08 /tests/wpt/css-tests/css-flexbox-1_dev/html
parent52f17a88141c8a55de3816e1a7a169cced518b36 (diff)
downloadservo-a7733b38d40ff074a0d087597be4fdf3f216c517.tar.gz
servo-a7733b38d40ff074a0d087597be4fdf3f216c517.zip
Add remaining longhand flexbox style properties
Add the remaining longhand CSS properties of flexbox for servo, including `flex-wrap`, `flex-grow`, `flex-shrink`, `justify-content`, `align-items`, `align-self` and `align-content`. tests for the remaining longhand properties are also enabled. Test for default value of `align-self` is modified because the new default value for this property is "auto" is current flexbox CR.
Diffstat (limited to 'tests/wpt/css-tests/css-flexbox-1_dev/html')
-rw-r--r--tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_computedstyle_align-self-invalid.htm4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_computedstyle_align-self-invalid.htm b/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_computedstyle_align-self-invalid.htm
index 199413c1cb7..00355e87526 100644
--- a/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_computedstyle_align-self-invalid.htm
+++ b/tests/wpt/css-tests/css-flexbox-1_dev/html/flexbox_computedstyle_align-self-invalid.htm
@@ -17,7 +17,7 @@ body {
var passed =
getComputedStyle(body).getPropertyValue("align-self") ==
- "stretch";
+ "auto";
body.textContent = body.className = passed ? "PASS" : "FAIL";
</script>
-</body></html> \ No newline at end of file
+</body></html>