Merge "mediawiki.searchSuggest: Show full article title as a tooltip for each suggestion"
[lhc/web/wiklou.git] / tests / phpunit / includes / resourceloader / fixtures / 001-embeddable.less
1 @base: '../fixtures/';
2
3 .helper(@url) when (embeddable(@url)) {
4 content: embeddable;
5 }
6 .helper(@url) when not (embeddable(@url)) {
7 content: not-embeddable;
8 }
9
10 .box {
11 .helper('path/to/nonexistent/file');
12 }
13
14 .box {
15 .helper('001-embeddable.css');
16 }
17
18 .box {
19 .helper("@{base}001-embeddable.css");
20 }