Skip to content

Commit

Permalink
Replace [type=1] selectors with [type="1"]
Browse files Browse the repository at this point in the history
The former is invalid since `1` is not a CSS identifier.
  • Loading branch information
SimonSapin authored and annevk committed May 18, 2017
1 parent 59ebd9c commit 59df9a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source
Expand Up @@ -110401,7 +110401,7 @@ dir, menu, ul {

<pre class="css">@namespace url(http://www.w3.org/1999/xhtml);

ol[type=1], li[type=1] { list-style-type: decimal; }
ol[type="1"], li[type="1"] { list-style-type: decimal; }
ol[type=a], li[type=a] { list-style-type: lower-alpha; }
ol[type=A], li[type=A] { list-style-type: upper-alpha; }
ol[type=i], li[type=i] { list-style-type: lower-roman; }
Expand Down

0 comments on commit 59df9a7

Please sign in to comment.