[webkit-help] webkit-help Digest, Vol 7, Issue 18

krithiga muruganandam krithiga.muruganandam at gmail.com
Tue Feb 9 02:37:34 PST 2010


Please unsubsribe from the mailing list as I will not be working on webkit
anymore.

On Wed, Jan 20, 2010 at 8:30 PM, <webkit-help-request at lists.webkit.org>wrote:

> Send webkit-help mailing list submissions to
>        webkit-help at lists.webkit.org
>
> 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
>        webkit-help-request at lists.webkit.org
>
> You can reach the person managing the list at
>        webkit-help-owner at lists.webkit.org
>
> 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 <hap497 at gmail.com>
> To: webkit-help at lists.webkit.org
> Subject: [webkit-help] Where is the code which draws each character in
>        a web   page
> Message-ID:
>        <5ff1d48c1001191505j5efdbd07te147bc057af81291 at mail.gmail.com>
> 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 <dmitrym at gmail.com>
> To: "tonikitoo (Antonio Gomes)" <tonikitoo at gmail.com>
> Cc: webkit-help <webkit-help at lists.webkit.org>
> Subject: Re: [webkit-help] Running layout tests with Qt webkit?
> Message-ID:
>        <b8dafa831001191627u4f9b0b2fx40b1e5c5f11ea57d at mail.gmail.com>
> 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)
> <tonikitoo at gmail.com> 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 <ariya.hidayat at gmail.com>
> 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
> >> webkit-help at lists.webkit.org
> >> 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 <fernmoon at gmail.com>
> To: webkit-help at lists.webkit.org
> Subject: [webkit-help] JAVASCRIPTCORE_PROFILE
> Message-ID:
>        <d421ffad1001191736t45b00093p8ccb06af156b392e at mail.gmail.com>
> 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 <n179911 at gmail.com>
> To: Julien Chaffraix <julien.chaffraix at gmail.com>
> Cc: webkit-help at lists.webkit.org
> Subject: Re: [webkit-help] How can I write content of a TextRun to a
>        file
> Message-ID:
>        <3b9893451001192332r4ccda72aj6139e897c333375e at mail.gmail.com>
> 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. "&lrm;1 hour ago&lrm;"
>
> 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 "&lrm;1 hour ago&lrm;"
>
> Thank you.
>
>
> On Sun, Jan 17, 2010 at 3:32 PM, Julien Chaffraix
> <julien.chaffraix at gmail.com> wrote:
> > On Sun, Jan 17, 2010 at 3:22 PM, n179911 <n179911 at gmail.com> 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" <Lewis.Liu at zyxel.com.tw>
> To: <webkit-help at lists.webkit.org>
> Subject: [webkit-help] how to test webkit
> Message-ID:
>        <0F191C125A200545BDE7A8DEF17BA612300897 at ZyTWBE03.ZyXEL.com>
> 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 <ariya.hidayat at gmail.com>
> To: webkit-help at lists.webkit.org
> Subject: Re: [webkit-help] how to test webkit
> Message-ID:
>        <ba035dd11001200657i2665011fr5fa05a25fb329c1c at mail.gmail.com>
> 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
> webkit-help at lists.webkit.org
> http://lists.webkit.org/mailman/listinfo.cgi/webkit-help
>
>
> End of webkit-help Digest, Vol 7, Issue 18
> ******************************************
>



-- 
Cheers,
Krithiga
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-help/attachments/20100209/9918025a/attachment-0001.html>


More information about the webkit-help mailing list