pynliner icon indicating copy to clipboard operation
pynliner copied to clipboard

Does not properly apply nested selectors

Open madduck opened this issue 6 years ago • 0 comments
trafficstars

This HTML

<style>
ol ol { list-style-type: lower-alpha; }
ol ol ol { list-style-type: lower-roman; }
</style>

<ol><li><p>Sublist:</p>
  <ol><li>Item</li>
  </ol>
</ol>

will result with the nested ol having lower-roman applied, instead of lower-alpha.

madduck avatar Oct 24 '19 02:10 madduck