vote up 1 vote down star

I am writing a server application that is able to manipulate the DOM before it is served to the client.
I am using C++ and Google's v8 as a javascript engine but I don't see any DOM API in v8.
Is there an open source implementation for doing DOM manipulation on HTML?
If not how would you implement one?

flag

2 Answers

vote up 1 vote down check

The DOM is created and linked to the V8 engine in Chrome. The V8 sources know nothing about the browser DOM. The quickest way to get this working for you would be to try to extract the parts of Chrome (Chromium, really) that load HTML into a structure, and the parts that link the DOM and DOM methods into V8. It's probably not as bad as you think. If anything, Google produces pretty clean C++, as far as I can tell from looking at the V8 source code. It's probably not as bad as you think.

link|flag
vote up 1 vote down

Safari/Chrome use the Webkit rendering engine, which incorporates CSS rendering and the DOM, I would say it's one of the best rendering engines in addition to Opera's - I think it could be of use:

http://webkit.org/

link|flag
I don't need a full grown rendering engine. I just need to parse the HTML & CSS into a DOM object and save the output as html. Is there some kind of solution that I'm seeking or do I have to build it myself? – the_drow Jul 26 at 9:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.