aboutsummaryrefslogtreecommitdiff
path: root/mod/less/vendors/lessphp/tests/inputs/escape.less
blob: 02d92d6f0a61ca2f03db6fc7780fdd1de5bbb491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
body {
	@hello: "world";
	border: e("this is simple");
	border: e(this is simple); // bug in lessjs
	border: e("this is simple", "cool lad");
	border: e(1232);
	border: e(@hello);
	border: e("one" + 'more'); // no string addition lessjs
	border: e(); // syntax error lessjs

	line-height: ~"eating rice";
	line-height: ~"string cheese";
	line-height: a b c ~"string me" d e f;
	line-height: ~"string @{hello}";
}

.class {
	filter: ~"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.png')";
}