silexlabs / Cocktail

An HTML/CSS rendering engine for the Haxe language
http://www.silexlabs.org/haxe/cocktail/
Other
192 stars 34 forks source link

Using Cocktail for embedded OAuth2.0 dialogs #397

Closed dukobpa3 closed 10 years ago

dukobpa3 commented 10 years ago

Hi. Great work!! Can I use cocktail for my case? So far I did not succeed even to download the test url as http://m.googgle.com

I've got much exception for missing close tags: [Fault] exception, information=Expected </link>

yanhick commented 10 years ago

Hi, thanks, sorry for the late response.

For now, Cocktail uses an XML parser (the standard Haxe one) instead of an HTML parser. This means that you can't have unclosed tags as this is invalid in XML.

Cocktail is meant to be used to build new application with it, it's not mature enough to load any website and display it correctly, hopefully someday it will be !

dukobpa3 commented 10 years ago

Hi. Thanks for your response. I understood.