From c164b8257123774368d13843f55a39e1deeaca8f Mon Sep 17 00:00:00 2001 From: Anders Hartvoll Ruud Date: Fri, 20 Jun 2025 14:30:39 +0200 Subject: [PATCH] [css-mixins-1] Revert to ED Also, fix a markup problem which made the parser unhappy in section 7.1.2. --- css-mixins-1/Overview.bs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/css-mixins-1/Overview.bs b/css-mixins-1/Overview.bs index 99bc86ff7c1..2d38da8ab3d 100644 --- a/css-mixins-1/Overview.bs +++ b/css-mixins-1/Overview.bs @@ -2,9 +2,8 @@ Title: CSS Functions and Mixins Module Shortname: css-mixins Level: 1 -Status: FPWD -Date: 2025-05-15 -Prepare for TR: yes +Status: ED +Prepare for TR: no Work Status: Exploring Group: CSSWG ED: https://drafts.csswg.org/css-mixins/ @@ -1396,7 +1395,7 @@ but ''env()'' can be used in locations that don't have an element context. an ''em'' value is passed to a mixin, but the argument is then used in the ''@media'' rule inside the mixin. -
+	
 	@mixin --smaller(--size <length>: 800px, @contents) {
 		@media (width <= env(--size)) {
 			@contents;
@@ -1407,7 +1406,7 @@ but ''env()'' can be used in locations that don't have an element context.
 			margin: 1em 0;
 		}
 	}
-	</pre>
+	
 
 
 When this situation occurs,