Index: LayoutTests/css3/calc/viewport-unit.html |
diff --git a/LayoutTests/css3/calc/viewport-unit.html b/LayoutTests/css3/calc/viewport-unit.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3358fe9bfb6bafc083aa68a29873b06a15bbb65c |
--- /dev/null |
+++ b/LayoutTests/css3/calc/viewport-unit.html |
@@ -0,0 +1,14 @@ |
+<!doctype html> |
+<style> |
+body { |
+ margin: 0; |
+ height: 100vh; |
+} |
+div { |
+ width: calc(50vw + 10%); |
+ height: calc(50vh + 10%); |
+ background-color: green; |
+} |
+</style> |
+<div> |
+</div> |