~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to src/lint/linter/__tests__/lessc/extend-clearfix.lint-test

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-11-01 23:20:06 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20141101232006-mvlnp0cil67tsboe
Tags: upstream-0~git20141101/arcanist
Import upstream version 0~git20141101, component arcanist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.clearfix {
 
2
  *zoom: 1;
 
3
  &:after {
 
4
    content: '';
 
5
    display: block;
 
6
    clear: both;
 
7
    height: 0;
 
8
  }
 
9
}
 
10
 
 
11
.foo {
 
12
  &:extend(.clearfix all);
 
13
  color: red;
 
14
}
 
15
 
 
16
.bar {
 
17
  &:extend(.clearfix all);
 
18
  color: blue;
 
19
}
 
20
~~~~~~~~~~