NV / CSSOM

Unmaintained! ⚠️ CSS Object Model implemented in pure JavaScript. Also, a CSS parser.
https://nv.github.io/CSSOM/docs/parse.html
MIT License
752 stars 98 forks source link

fix parse ie expression error #45

Closed myhere closed 12 years ago

myhere commented 12 years ago

fix css value(ie expression) parse error:

http://nv.github.com/CSSOM/docs/parse.html#css=html%20%7B%0A%20%20%20%20zoom%3A%20expression(function(ele)%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20hello%20world%0A%20%20%20%20%20%20%20%20ele.style.zoom%20%3D%20%221%22%3B%0A%20%20%20%20%20%20%20%20%2F*%20hello%20world%20*%2F%0A%20%20%20%20%20%20%20%20document.execCommand(%22BackgroundImageCache%22%2C%20false%2C%20true)%3B%0A%20%20%20%20%7D(this))%3B%0A%7D

to:

http://github.zhangl.in/CSSOM/docs/parse.html#css=html%20%7B%0A%20%20%20%20zoom%3A%20expression(function(ele)%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20hello%20world%0A%20%20%20%20%20%20%20%20ele.style.zoom%20%3D%20%221%22%3B%0A%20%20%20%20%20%20%20%20%2F*%20hello%20world%20*%2F%0A%20%20%20%20%20%20%20%20document.execCommand(%22BackgroundImageCache%22%2C%20false%2C%20true)%3B%0A%20%20%20%20%7D(this))%3B%0A%7D

NV commented 12 years ago

This is quite a lot of work. Huge thanks!