From 11aba0ea457044eec71d216d7e7db3194f9ed7ff Mon Sep 17 00:00:00 2001 From: Gustavo Henke Date: Tue, 8 Jan 2013 23:56:18 -0200 Subject: [PATCH] pow() function: more tests --- test/css/functions.css | 2 ++ test/less/functions.less | 2 ++ 2 files changed, 4 insertions(+) diff --git a/test/css/functions.css b/test/css/functions.css index cec43428..67db3cb6 100644 --- a/test/css/functions.css +++ b/test/css/functions.css @@ -69,6 +69,8 @@ atan: 34.00000000000001deg; atan: 45.00000000000001deg; pow: 64px; + pow: 64; + pow: 27; percentage: 20%; color: #ff0011; tint: #898989; diff --git a/test/less/functions.less b/test/less/functions.less index 824825c3..5e66c217 100644 --- a/test/less/functions.less +++ b/test/less/functions.less @@ -75,6 +75,8 @@ atan: convert(acos(cos(34deg)), deg); atan: convert(acos(cos(50grad)), deg); pow: pow(8px, 2); + pow: pow(4, 3); + pow: pow(3, 3em); percentage: percentage(10px / 50); color: color("#ff0011"); tint: tint(#777777, 13);