diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2019-07-20 10:25:14 +0000 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2019-07-20 14:47:24 +0000 |
commit | dc1f7ba3ec4ac980906bdd130fb1491c5b7acc22 (patch) | |
tree | 768b3927f8d7c51dff23043156c68193afcb18fc /tests/wpt/web-platform-tests/css/css-logical | |
parent | 60f1ffc5a79f98c261dbf5f8d184da160dfadfc5 (diff) | |
download | servo-dc1f7ba3ec4ac980906bdd130fb1491c5b7acc22.tar.gz servo-dc1f7ba3ec4ac980906bdd130fb1491c5b7acc22.zip |
Update web-platform-tests to revision 6fa9de7201cd41564d02c3edd62365aeb40e171b
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-logical')
5 files changed, 12 insertions, 12 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-valid.html b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-valid.html index 973a1199c28..68c9797c0f4 100644 --- a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-valid.html +++ b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-valid.html @@ -19,7 +19,7 @@ test_valid_value("border-block", "double", ["double", "medium double"]); test_valid_value("border-block-start", "green double thin", "thin double green"); test_valid_value("border-block-start", "green", ["green", "medium none green"]); test_valid_value("border-block-end", "thin", ["thin", "thin none"]); -test_valid_value("border-block-end", "calc(10px - 0.5em) dotted red"); +test_valid_value("border-block-end", "calc(10px - 0.5em) dotted red", "calc(-0.5em + 10px) dotted red"); </script> </body> </html> diff --git a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-width-valid.html b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-width-valid.html index 98987df9a70..03b02a25664 100644 --- a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-width-valid.html +++ b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-block-width-valid.html @@ -13,14 +13,14 @@ <script> // <length> | thin | medium | thick test_valid_value("border-block-start-width", "10px"); -test_valid_value("border-block-start-width", "calc(10px + 0.5em)"); +test_valid_value("border-block-start-width", "calc(10px + 0.5em)", "calc(0.5em + 10px)"); test_valid_value("border-block-start-width", "thick"); test_valid_value("border-block-start-width", "thin"); test_valid_value("border-block-end-width", "0", "0px"); -test_valid_value("border-block-end-width", "calc(10px - 0.5em)"); +test_valid_value("border-block-end-width", "calc(10px - 0.5em)", "calc(-0.5em + 10px)"); test_valid_value("border-block-end-width", "medium"); test_valid_value("border-block-width", "10px"); -test_valid_value("border-block-width", "medium calc(10px + 0.5em)"); +test_valid_value("border-block-width", "medium calc(10px + 0.5em)", "medium calc(0.5em + 10px)"); test_valid_value("border-block-width", "10px 10px", "10px"); </script> </body> diff --git a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-valid.html b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-valid.html index b7207c0f235..be29783acf4 100644 --- a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-valid.html +++ b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-valid.html @@ -19,7 +19,7 @@ test_valid_value("border-inline", "double", ["double", "medium double"]); test_valid_value("border-inline-start", "green double thin", "thin double green"); test_valid_value("border-inline-start", "green", ["green", "medium none green"]); test_valid_value("border-inline-end", "thin", ["thin", "thin none"]); -test_valid_value("border-inline-end", "calc(10px - 0.5em) dotted red"); +test_valid_value("border-inline-end", "calc(10px - 0.5em) dotted red", "calc(-0.5em + 10px) dotted red"); </script> </body> </html> diff --git a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-width-valid.html b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-width-valid.html index 03c3e0fca2f..81c7049c5e9 100644 --- a/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-width-valid.html +++ b/tests/wpt/web-platform-tests/css/css-logical/parsing/border-inline-width-valid.html @@ -13,14 +13,14 @@ <script> // <length> | thin | medium | thick test_valid_value("border-inline-start-width", "10px"); -test_valid_value("border-inline-start-width", "calc(10px + 0.5em)"); +test_valid_value("border-inline-start-width", "calc(10px + 0.5em)", "calc(0.5em + 10px)"); test_valid_value("border-inline-start-width", "thick"); test_valid_value("border-inline-start-width", "thin"); test_valid_value("border-inline-end-width", "0", "0px"); -test_valid_value("border-inline-end-width", "calc(10px - 0.5em)"); +test_valid_value("border-inline-end-width", "calc(10px - 0.5em)", "calc(-0.5em + 10px)"); test_valid_value("border-inline-end-width", "medium"); test_valid_value("border-inline-width", "10px"); -test_valid_value("border-inline-width", "medium calc(10px + 0.5em)"); +test_valid_value("border-inline-width", "medium calc(10px + 0.5em)", "medium calc(0.5em + 10px)"); test_valid_value("border-inline-width", "10px 10px", "10px"); </script> </body> diff --git a/tests/wpt/web-platform-tests/css/css-logical/parsing/inset-block-inline-valid.html b/tests/wpt/web-platform-tests/css/css-logical/parsing/inset-block-inline-valid.html index 1287f697873..b08975251d8 100644 --- a/tests/wpt/web-platform-tests/css/css-logical/parsing/inset-block-inline-valid.html +++ b/tests/wpt/web-platform-tests/css/css-logical/parsing/inset-block-inline-valid.html @@ -15,16 +15,16 @@ test_valid_value("inset-block-start", "auto"); test_valid_value("inset-block-end", "-10px"); test_valid_value("inset-inline-start", "-20%"); -test_valid_value("inset-inline-end", "calc(10px - 0.5em)"); +test_valid_value("inset-inline-end", "calc(10px - 0.5em)", "calc(-0.5em + 10px)"); test_valid_value("inset-block", "auto"); test_valid_value("inset-block", "-10px"); -test_valid_value("inset-block", "calc(10px - 0.5em) -20%"); +test_valid_value("inset-block", "calc(10px - 0.5em) -20%", "calc(-0.5em + 10px) -20%"); test_valid_value("inset-block", "auto auto", "auto"); test_valid_value("inset-inline", "-20%"); -test_valid_value("inset-inline", "calc(10px - 0.5em)"); +test_valid_value("inset-inline", "calc(10px - 0.5em)", "calc(-0.5em + 10px)"); test_valid_value("inset-inline", "-10px auto"); -test_valid_value("inset-inline", "auto calc(10px + 0.5em)"); +test_valid_value("inset-inline", "auto calc(10px + 0.5em)", "auto calc(0.5em + 10px)"); </script> </body> </html> |