ArthurHub / HTML-Renderer

Cross framework (WinForms/WPF/PDF/Metro/Mono/etc.), Multipurpose (UI Controls / Image generation / PDF generation / etc.), 100% managed (C#), High performance HTML Rendering library.
https://htmlrenderer.codeplex.com/
BSD 3-Clause "New" or "Revised" License
1.24k stars 522 forks source link

Comments in inline CSS (<style>) cause all styles to be ignored #170

Open tig opened 4 years ago

tig commented 4 years ago

This does not work:


<style>
/* comment */
body { color: blue };
</style>

This works:

``` html
<style>
body { color: blue };
</style>