Index: LayoutTests/transforms/perspective-parsing.html |
diff --git a/LayoutTests/transforms/perspective-parsing.html b/LayoutTests/transforms/perspective-parsing.html |
index 221a8a985a40f6337553006f8ac21b3134d3b066..2d3ed190e8d79cf1f4454c56990d8e1cc318a376 100644 |
--- a/LayoutTests/transforms/perspective-parsing.html |
+++ b/LayoutTests/transforms/perspective-parsing.html |
@@ -17,4 +17,10 @@ expect('0px').isInvalid(); |
expect('5').isInvalid(); |
expect('-1px').isInvalid(); |
expect('50%').isInvalid(); |
+expect('calc(-1px)').isInvalid(); |
+expect('calc(0px)').isInvalid(); |
+expect('calc(1px)').parsesAs('calc(1px)'); |
+expect('calc(-1)').isInvalid(); |
+expect('calc(0)').isInvalid(); |
+expect('calc(1)').isInvalid(); |
</script> |