From 782ea69a8149577136e0d11984a14915999fa514 Mon Sep 17 00:00:00 2001 From: Anders Hartvoll Ruud Date: Thu, 14 Mar 2019 20:51:12 +0100 Subject: [PATCH] [css-properties-values-api] Use HTML entity for 'less than'. --- css-properties-values-api/Overview.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css-properties-values-api/Overview.bs b/css-properties-values-api/Overview.bs index 73072816..d82ff845 100644 --- a/css-properties-values-api/Overview.bs +++ b/css-properties-values-api/Overview.bs @@ -334,12 +334,12 @@ so long as you don't violate the (very liberal) syntax for custom properties. Registering a custom property does not change this. Even if a custom property is, for example, -registered with `syntax: ""`, +registered with `syntax: "<color>"`, a rule like `@supports (--foo: 1em) {...}` will still evaluate as true and apply those styles. Note: This matches the parsing behavior of registered custom properties. -A registered custom property specified as `""` +A registered custom property specified as `"<color>"` but written as `--foo: 1em;` will still be accepted as valid at parse-time, but be automatically [=invalid at computed-value time=]. As ''@supports'' tests parse behavior,