Skip to content

Commit

Permalink
Trim trailing spaces from test files.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
XhmikosR committed Oct 17, 2015
1 parent e45dc61 commit 65410bc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/expected/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
background: url('_../images/bar.png?12345');
background: url(_../images/foo.png) ;
background: url( _../images/bar.png );
background: url(
background: url(
_../images/bar.png
);
background: transparent url( _../images/bar.png );
Expand All @@ -16,7 +16,7 @@
background: url( _more-images/bar.jpg?12345 );
background: url( '_more-images/bar.jpg' );
background: url(
_more-images/bar.jpg
_more-images/bar.jpg
);
background : url(_images/thing.jpg) ;
}
Expand Down
4 changes: 2 additions & 2 deletions test/expected/msie-behavior.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* URLs in IE's 'behavior' property are skipped, by default */
*, *:before, *:after {
box-sizing: border-box;

/* without hack */
behavior: url(_scripts/boxsizing.htc);
behavior : url( _scripts/boxsizing.htc );

/* with IE<8 hack */
*behavior: url(_scripts/boxsizing.htc);
}
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
background: url('../images/bar.png?12345');
background: url(../images/foo.png) ;
background: url( ../images/bar.png );
background: url(
background: url(
../images/bar.png
);
background: transparent url( ../images/bar.png );
Expand All @@ -16,7 +16,7 @@
background: url( more-images/bar.jpg?12345 );
background: url( 'more-images/bar.jpg' );
background: url(
more-images/bar.jpg
more-images/bar.jpg
);
background : url(images/thing.jpg) ;
}
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/msie-behavior.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* URLs in IE's 'behavior' property are skipped, by default */
*, *:before, *:after {
box-sizing: border-box;

/* without hack */
behavior: url(scripts/boxsizing.htc);
behavior : url( scripts/boxsizing.htc );

/* with IE<8 hack */
*behavior: url(scripts/boxsizing.htc);
}
Expand Down

0 comments on commit 65410bc

Please sign in to comment.