[SPIP] +version 3.0.7
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / shorthands / bugshorthand1.csst
diff --git a/www/plugins-dist/compresseur/lib/csstidy/testing/unit-tests/csst/shorthands/bugshorthand1.csst b/www/plugins-dist/compresseur/lib/csstidy/testing/unit-tests/csst/shorthands/bugshorthand1.csst
new file mode 100644 (file)
index 0000000..f9d517d
--- /dev/null
@@ -0,0 +1,37 @@
+--TEST--
+Test general font optimization
+--CSS--
+        .form-suggest {
+               height : 200px ;
+               background : #DEE2D0 ;
+               vertical-align : top;
+        }
+
+body{
+       color: #000000;
+       font : 11px Verdana, Arial, Helvetica, sans-serif ;
+       margin: 0 10px 10px 10px;
+       padding: 0;
+       overflow:auto;
+}
+--EXPECT--
+array (
+  '.form-suggest' => 
+  array (
+    'height' => '200px',
+    'background' => '#DEE2D0',
+    'vertical-align' => 'top',
+  ),
+  'body' => 
+  array (
+    'color' => '#000',
+    'font' => '11px Verdana,Arial,Helvetica,sans-serif',
+    'margin' => '0 10px 10px',
+    'padding' => '0',
+    'overflow' => 'auto',
+  ),
+)
+--SETTINGS--
+optimise_shorthands=1
+sort_selectors=0
+sort_properties=0