Please unsubsribe from the mailing list as I will not be working on webkit anymore.
On Wed, Jan 20, 2010 at 8:30 PM, <[email protected]>wrote: > Send webkit-help mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.webkit.org/mailman/listinfo.cgi/webkit-help > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of webkit-help digest..." > > > Today's Topics: > > 1. Where is the code which draws each character in a web page > (hap 497) > 2. Re: Running layout tests with Qt webkit? (Dmitry M) > 3. JAVASCRIPTCORE_PROFILE (Fern Moon) > 4. Re: How can I write content of a TextRun to a file (n179911) > 5. how to test webkit (Lewis Liu) > 6. Re: how to test webkit (Ariya Hidayat) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 19 Jan 2010 15:05:42 -0800 > From: hap 497 <[email protected]> > To: [email protected] > Subject: [webkit-help] Where is the code which draws each character in > a web page > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > Hi, > > Can you please point me to the code of how each character of text in a > web page is drawn on a screen? > I would like to look at the logic of Webkit about how it determine to > draw a Rectangle on the screen instead of the glyph of a character on > the screen. > > Thank you for any pointer. > > > ------------------------------ > > Message: 2 > Date: Tue, 19 Jan 2010 16:27:32 -0800 > From: Dmitry M <[email protected]> > To: "tonikitoo (Antonio Gomes)" <[email protected]> > Cc: webkit-help <[email protected]> > Subject: Re: [webkit-help] Running layout tests with Qt webkit? > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > Antonio and Ariya, thank you very much for your help. I know where to look > now. > -Dmitry > > On Tue, Jan 19, 2010 at 9:53 AM, tonikitoo (Antonio Gomes) > <[email protected]> wrote: > > also if you are fixing/improving something related to qt's layoutTest > > suite implementation, I would strongly recommend you to move > > development on top of webkit trunk. I bunch has been happening lately > > in this area ... so you'd be in sync. > > > > On Tue, Jan 19, 2010 at 12:56 PM, Ariya Hidayat <[email protected]> > wrote: > >>> I'm currently playing around with the Qt bundled version of webkit. I > >>> would like to run the layout tests against my local changes. Trunk > >>> version of webkit has WebKitsTools directory; Qt version does not. Is > >>> there a suggested procedure for making this work? Can I copy > >>> WebKitTools into Qt and expect it to work? Quick advice would be > >>> appreciated before I dive in. > >> > >> Of course QtWebKit has WebKitTools. What you are looking at the > >> QtWebKit module inside Qt source tree, which is just a convenient copy > >> (but with few unrelated stuff removed to save space). For the > >> development, including running layout tests etc, check out the real > >> WebKit repository and build QtWebKit from there. See e.g. > >> http://trac.webkit.org/wiki/BuildingQtOnLinux for details. > >> > >> > >> > >> -- > >> Ariya Hidayat > >> http://www.linkedin.com/in/ariyahidayat > >> _______________________________________________ > >> webkit-help mailing list > >> [email protected] > >> http://lists.webkit.org/mailman/listinfo.cgi/webkit-help > >> > > > > > > > > -- > > --Antonio Gomes > > > > > ------------------------------ > > Message: 3 > Date: Tue, 19 Jan 2010 17:36:37 -0800 > From: Fern Moon <[email protected]> > To: [email protected] > Subject: [webkit-help] JAVASCRIPTCORE_PROFILE > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > Hi, > I find that there are two function to do profiling, > didExecute and willExecute. What will the willExecute do ? > If will it generate runtime profile? > > Thanks for help? > > > ------------------------------ > > Message: 4 > Date: Tue, 19 Jan 2010 23:32:38 -0800 > From: n179911 <[email protected]> > To: Julien Chaffraix <[email protected]> > Cc: [email protected] > Subject: Re: [webkit-help] How can I write content of a TextRun to a > file > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > Julien, > > I followed your example by doing this: > String characters = String(run.characters()).substring(from, to - from); > CString characters = characters.latin1(); > printf ("(%s)\n",characters.data()); > > But it has problem where there is entity reference in the TextRun, > e.g. "‎1 hour ago‎" > > The above code will print "?1 hour ago?" > > And if I switch to use CString characters = characters.utf8(); > > The following will print (with hex dump, there is a hex 0xe2808e > before "1 hour ago"). And i think 0xe2808e is utf character for > LEFT-TO-RIGHT mark. > > 00020f20: 3928 e280 8e31 2068 6f75 7220 6167 6fe2 9(...1 hour ago. > 00020f30: 808e 2978 0a64 7261 7754 6578 7420 3133 ..) > > But when I do 'inspect element', the browser just shows "1 hour ago". > My question is how can the browser skips this entity reference > character for string like "‎1 hour ago‎" > > Thank you. > > > On Sun, Jan 17, 2010 at 3:32 PM, Julien Chaffraix > <[email protected]> wrote: > > On Sun, Jan 17, 2010 at 3:22 PM, n179911 <[email protected]> wrote: > >> Thanks. And I get compilation error in > >> String characters = run.characters().substring(from, to - from); > > > > My bad, I should have written: > > > > String characters = String(run.characters()).substring(from, to - from); > > > > Regards, > > Julien > > > > > ------------------------------ > > Message: 5 > Date: Wed, 20 Jan 2010 16:38:32 +0800 > From: "Lewis Liu" <[email protected]> > To: <[email protected]> > Subject: [webkit-help] how to test webkit > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="utf-8" > > Sorry to bother all!! > > Where are any sample codes to test webkit?? > In webkittools?? > How to use it?? > Any document to learn? > Thanks a lot. > > Best Regards > Lewis Liu > Be joyful always, pray continually, give thanks in all circumstances > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.webkit.org/pipermail/webkit-help/attachments/20100120/86ca82a9/attachment-0001.html > > > > ------------------------------ > > Message: 6 > Date: Wed, 20 Jan 2010 06:57:26 -0800 > From: Ariya Hidayat <[email protected]> > To: [email protected] > Subject: Re: [webkit-help] how to test webkit > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > > Where are any sample codes to test webkit?? > > In webkittools?? > > How to use it?? > > Any document to learn? > > http://webkit.org/quality/testing.html > http://webkit.org/coding/contributing.html > http://trac.webkit.org/wiki/Writing%20Layout%20Tests%20for%20DumpRenderTree > > > If you are new to WebKit, why don't you read this, too? > https://lists.webkit.org/pipermail/webkit-help/2009-August/000146.html > > > -- > Ariya Hidayat > http://www.linkedin.com/in/ariyahidayat > > > ------------------------------ > > _______________________________________________ > webkit-help mailing list > [email protected] > http://lists.webkit.org/mailman/listinfo.cgi/webkit-help > > > End of webkit-help Digest, Vol 7, Issue 18 > ****************************************** > -- Cheers, Krithiga
_______________________________________________ webkit-help mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-help
