summaryrefslogtreecommitdiff
path: root/_test
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-11-12 12:38:22 +0100
committerAndreas Gohr <andi@splitbrain.org>2005-11-12 12:38:22 +0100
commitc00aef76210cc7e657a9e8a02cdacdf305c76af3 (patch)
treecc292e48c508213d6f38d0f3409fc12db9a12544 /_test
parent9d2ddea4dd0070b4ea2963387d5cd361de0afc97 (diff)
downloadrpg-c00aef76210cc7e657a9e8a02cdacdf305c76af3.tar.gz
rpg-c00aef76210cc7e657a9e8a02cdacdf305c76af3.tar.bz2
fix for comment stripping in CSS compression
darcs-hash:20051112113822-7ad00-507d694e91f85274266df71b7912690c65bc2b5e.gz
Diffstat (limited to '_test')
-rw-r--r--_test/cases/lib/exe/css_css_compress.test.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/_test/cases/lib/exe/css_css_compress.test.php b/_test/cases/lib/exe/css_css_compress.test.php
index df5d4cba0..68d19fae8 100644
--- a/_test/cases/lib/exe/css_css_compress.test.php
+++ b/_test/cases/lib/exe/css_css_compress.test.php
@@ -29,6 +29,16 @@ class css_css_compress_test extends UnitTestCase {
$this->assertEqual(css_compress($text), '/* \\*/display:inline;/* */');
}
+ function test_hack2(){
+ $text = '/* min-height hack for Internet Explorer http://www.cssplay.co.uk/boxes/minheight.html */
+ /*\\*/
+ * html .page {
+ height: 450px;
+ }
+ /**/';
+ $this->assertEqual(css_compress($text), '/*\\*/* html .page{height:450px;}/**/');
+ }
+
function test_nl1(){
$text = "a{left:20px;\ntop:20px}";
$this->assertEqual(css_compress($text), 'a{left:20px;top:20px}');