Skip to content

Commit

Permalink
Add test case for T367603
Browse files Browse the repository at this point in the history
Bug: T367603
Change-Id: I66ed75d295a0732adde7df78aecc7dee5620db05
  • Loading branch information
catrope authored and Krinkle committed Jun 14, 2024
1 parent e7aa2d4 commit eba7da1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/Fixtures/less.php/css/T367603-math-media-var.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@media (max-width: 639px) {
.thing {
left: 0;
}
}
8 changes: 8 additions & 0 deletions test/Fixtures/less.php/less/T367603-math-media-var.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@min-width-breakpoint-tablet: 640px;
@max-width-breakpoint-mobile: @min-width-breakpoint-tablet - 1px;

@media ( max-width: @max-width-breakpoint-mobile ) {
.thing {
left: 0;
}
}

0 comments on commit eba7da1

Please sign in to comment.