Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

CSS parser breaks counter() #197

Closed
GoogleCodeExporter opened this issue Apr 6, 2015 · 1 comment
Closed

CSS parser breaks counter() #197

GoogleCodeExporter opened this issue Apr 6, 2015 · 1 comment

Comments

@GoogleCodeExporter
Copy link

body {
  counter-reset:section;
}

h1:before {
  counter-increment:section;
  content:"Section " counter(section) ". ";
}

Gets converted into:

body{counter-reset:section}h1:before{counter-increment:section;content:"Section 
" counter() ". "}

Notice the empty counter()

Original issue reported on code.google.com by sligocki@google.com on 26 Jan 2011 at 5:37

@GoogleCodeExporter
Copy link
Author

Fixed and tested in r405.

Original comment by sligocki@google.com on 26 Jan 2011 at 7:46

  • Changed state: Fixed
  • Added labels: release-note

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant