[DEPOT] ~gitignore : exclusion d'IMG
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / print-plain / atvalues.csst
1 --TEST--
2 Test @import directive
3 --CSS--
4 @import url('../thematic/library/styles/reset.css');
5 @namespace foo url("http://www.example.com/");
6 @charset "Shift-JIS";
7
8 /* Based on the original Style Sheet for the fisubsilver v2 Theme for phpBB version 2+
9 Edited by Daz - http://www.forumimages.com - last updated 26-06-03 */
10 /* The content of the posts (body of text) */
11 /* General page style */
12
13 /* begin suggest post */
14 .float-l {
15 float : left ;
16 }
17 --PRINT--
18 @charset "Shift-JIS";
19 @import "../thematic/library/styles/reset.css";
20 @namespace foo "http://www.example.com/";
21 @media screen {
22 .float-l{float:left}
23 }
24 --SETTINGS--
25 template='high'
26 sort_properties=false
27 sort_selectors=false
28 default_media="@media screen"