-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Rename two less.php fixtures that lack a descriptive file name
Follows-up I123b044f50ee47a5b7e (9671dd5). Change-Id: I54c185d3fcaac82095fa47f27235ae68e52aba62
- Loading branch information
Showing
5 changed files
with
14 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.myfunc(@x) { | ||
font-family: '@{x}'; | ||
} | ||
div.one { | ||
.myfunc(@x: 'Arial'); | ||
} | ||
div.two { | ||
// Passing a non-expression as mixin argument must not cause a | ||
// ParseError, because it is valid syntax for "detached ruleset". | ||
// | ||
// Most functions can't take that as an argument though, so in a string | ||
// operation (for example) this becomes an empty string. | ||
.myfunc(@x: { content: 'Test'; }); | ||
} |
This file was deleted.
Oops, something went wrong.