Re: [webkit-dev] WebKit render tree

2016-06-03 Thread Andy Somogyi
What I’m thinking about is what if all of my code could be used as a webkit extension, i.e. I could make the class definitions conform and create idl files for each of my class, and stick them all in a new directory under WebCore/Modules. Looks like then, I would have to modify a single CMake

Re: [webkit-dev] WebKit render tree

2016-06-01 Thread Myles C. Maxfield
From the description, it sounds like you have some native code which needs to be able to modify the DOM and you need events from the DOM to be able to call code from your library. You can do this today without modifying WebKit. The way for native code to modify the DOM is for the native code to

Re: [webkit-dev] WebKit render tree

2016-06-01 Thread Andy Somogyi
> On Jun 1, 2016, at 1:37 PM, Myles C. Maxfield wrote: > > Replies inline. > Generating a DOM is usually done in JavaScript. I'm curious about the problem > you are trying to solve where JavaScript is not sufficient. > > Drawing into an existing window is usually done by

Re: [webkit-dev] WebKit render tree

2016-06-01 Thread Myles C. Maxfield
Replies inline. > On May 31, 2016, at 11:19 PM, Andy Somogyi wrote: > > Hi, > > I’m a programming language researcher, and we are working on a new visual > programming language. > > I’m investigating using WebCore as the rendering component of our language >

Re: [webkit-dev] WebKit render tree

2016-06-01 Thread Konstantin Tokarev
01.06.2016, 09:19, "Andy Somogyi" : > Hi, > > I’m a programming language researcher, and we are working on a new visual > programming language. > > I’m investigating using WebCore as the rendering component of our language > editing/visualization system. > > Essentially

[webkit-dev] WebKit render tree

2016-06-01 Thread Andy Somogyi
Hi, I’m a programming language researcher, and we are working on a new visual programming language. I’m investigating using WebCore as the rendering component of our language editing/visualization system. Essentially what I’d like to be able to do is to programmatically (C++) generate 1: a

Re: [webkit-dev] Webkit render tree dump

2009-12-01 Thread David Hyatt
I actually have a giant set of changes that need to be made to the render tree dumping... many of which are outlined in comments. The problem is it causes all the test results to have to be updated. Right now many silly and incorrect things are being dumped right now just for backwards

Re: [webkit-dev] Webkit render tree dump

2009-11-30 Thread Darin Adler
On Nov 18, 2009, at 8:55 PM, pundarik rajkhowa wrote: I have a doubt regarding the content of webkit render tree dump. In this dump, do we only print the HTML node information(body, div etc) or we print the style information also(font-weight, text-decoration etc). From what I have seen, it

[webkit-dev] Webkit render tree dump

2009-11-25 Thread pundarik rajkhowa
Hi, I have a doubt regarding the content of webkit render tree dump. In this dump, do we only print the HTML node information(body, div etc) or we print the style information also(font-weight, text-decoration etc). From what I have seen, it looks like only node information is printed. In such a