Skip to content

Commit 91e3ef8

Browse files
committed
Fix css/css-values/calc-in-media-queries-with-mixed-units.html
The media query in mixed-units-09.html did not match the description in the test and did not compute to 10px. This updates the media query in mixed-units-09.html to match the description.
1 parent 3c11bf9 commit 91e3ef8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

css/css-values/support/mixed-units-09.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
body {
66
background: rgb(0, 0, 255);
77
}
8-
@media (height: calc(50vw / 0.3125em * 10px)) {
8+
@media (height: calc(50vw * 10vh / 0.3125em * 10px / 100vh)) {
99
body {
1010
background: rgb(255, 165, 0);
1111
}

0 commit comments

Comments
 (0)