aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html')
-rw-r--r--tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html15
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html b/tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html
index c82f6be8c5d..63243b5e985 100644
--- a/tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html
+++ b/tests/wpt/web-platform-tests/css/css-transforms/parsing/rotate-parsing-valid.html
@@ -19,14 +19,17 @@ test_valid_value("rotate", "0deg");
test_valid_value("rotate", "100 200 300 400grad");
test_valid_value("rotate", "400grad 100 200 300", "100 200 300 400grad");
-test_valid_value("rotate", "x 400grad", "1 0 0 400grad");
-test_valid_value("rotate", "400grad x", "1 0 0 400grad");
+test_valid_value("rotate", "x 400grad");
+test_valid_value("rotate", "400grad x", "x 400grad");
+test_valid_value("rotate", "1 0 0 400grad", "x 400grad");
-test_valid_value("rotate", "y 400grad", "0 1 0 400grad");
-test_valid_value("rotate", "400grad y", "0 1 0 400grad");
+test_valid_value("rotate", "y 400grad");
+test_valid_value("rotate", "400grad y", "y 400grad");
+test_valid_value("rotate", "0 1 0 400grad", "y 400grad");
-test_valid_value("rotate", "z 400grad", "0 0 1 400grad");
-test_valid_value("rotate", "400grad z", "0 0 1 400grad");
+test_valid_value("rotate", "z 400grad");
+test_valid_value("rotate", "400grad z", "z 400grad");
+test_valid_value("rotate", "0 0 1 400grad", "z 400grad");
</script>
</body>
</html>