deb-python-lesscpy/lesscpy/test/css/properties.css
Sascha Peilicke 840f3265a3 Don't evaluate expression in 'font: 0/0 a;'
This is the ugliest (but valid) CSS statement since sliced bread and
Bootstrap3 makes use of it in the escaped form: 'font: ~"0/0" a;'. Add
test-cases for both variants and special treatment in Expression.parse.

Oh my...
2013-12-20 11:15:42 +01:00

53 lines
823 B
CSS

div.properties {
color: red;
}
div.empty {
margin: ;
}
div.important {
color: red !important;
width: 100% !important;
height: 20px !important;
}
div.annoying_font_property {
font: 12px/16px Arial;
font: 100%/16px Arial;
font: normal small/20px 'Trebuchet MS', Verdana, sans-serif;
}
div.shorthands {
border: 1px solid #000000;
margin: 1px 0;
padding: 0 auto;
padding: 1px 0 2px 0;
margin: 0;
padding: -1px -0 -2px -0;
}
table {
counter-reset: group;
}
tbody {
counter-increment: group;
counter-reset: row;
}
tbody tr {
counter-increment: row;
}
tbody td:first-child:before {
content: counter(group,upper-latin)"."counter(row);
}
.escape\|random\|char {
color: red;
}
.mixin\!tUp {
font-weight: bold;
}
.trailingTest\+ {
color: red;
}
.sr-only {
clip: rect(0 0 0 0);
}
.font-madness {
font: 0/0 a;
}