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