[webkit-dev] Selection highlight painting ("gaps"?)

2009-10-16 Thread Evan Martin
When you select multiple lines of text in WebKit, the highlight paints over whitespace on the right margin. This is correct behavior for Mac, but not for Windows or Linux. Epiphany (using WebKitGtk) does it Linux style, but my best efforts to trace through the code have found no ifdefs related to

Re: [webkit-dev] Limiting slow unload handlers (Re: Back/forward cache for pages with unload handlers)

2009-10-16 Thread John Abd-El-Malek
I've createdhttps://bugs.webkit.org/show_bug.cgi?id=30457 for the image trick https://bugs.webkit.org/show_bug.cgi?id=30458 for and window.sendPing On Thu, Oct 15, 2009 at 3:56 PM, Darin Fisher wrote: > On Thu, Oct 15, 2009 at 1:53 PM, Peter Kasting wrote: > >> On Thu, Oct 15, 2009 at 1:50 PM,

Re: [webkit-dev] propose an API to return Range in etc. form control nodes (similar functionality as document.caretRangeFromPoint)

2009-10-16 Thread Xiaomei Ji
Hi Maciej: Thanks for your quick reply. Then, I have other questions: 1. Why we would like to differentiate whether the node is a 'document' node or a 'control' node? Can such differentiation be achived by existing flags in node instead of "offsetKind"? 2. If we expose the control node, how to de

Re: [webkit-dev] WINCE port: questions regarding to JavaScriptCore

2009-10-16 Thread KwangYul Seo
Hi, GetThreadCallStack() is a kernel function, but it is not Kernel-mode only. So you can definitely use it to get the stack base address. However, Pkfuncs.h (which includes the function declaration, related structures and constants) is not usually available for user-level applications. You need

Re: [webkit-dev] propose an API to return Range in etc. form control nodes (similar functionality as document.caretRangeFromPoint)

2009-10-16 Thread Maciej Stachowiak
On Oct 16, 2009, at 10:23 AM, Xiaomei Ji wrote: Hi Maciej: Thanks for your comments. I have a question about "interface CaretPosition": In case of form control node, such as , the 'offset' is the character offset within the under mouse, 'offsetKind' is "control", what is the value of 'c

Re: [webkit-dev] propose an API to return Range in etc. form control nodes (similar functionality as document.caretRangeFromPoint)

2009-10-16 Thread Xiaomei Ji
(sorry for the spam, send last time using the wrong 'from' email address to the public mailing lists) Hi Maciej: Thanks for your comments. I have a question about "interface CaretPosition": In case of form control node, such as , the 'offset' is the character offset within the under mouse, 'of

Re: [webkit-dev] Multitouch support for QtWebKit on gitorious experimental branch

2009-10-16 Thread Kenneth Christiansen
Nice stuff Jonni, Kai showed me the examples at the Qt Dev Days and I got quite impressed; it runs very smoothly. Good work guys! Kenneth On Thu, Oct 15, 2009 at 5:56 AM, wrote: > > FYI, we have just released experimental branch of multitouch support of > QtWebKit for Windows7 on gitorious. >

Re: [webkit-dev] jit, unordered compare

2009-10-16 Thread Geoffrey Garen
Hi fortunately, no, I don't need double branch here. "cmpvs reg0, reg0" is a conditional instruction, which only executes if the v flag is set. My proposal would be to add a new DoubleCondition called DoubleEqualOrNAN, or something similar to clarify what we expect from the conditional bra

Re: [webkit-dev] Partial SVG repaint

2009-10-16 Thread Eric Seidel
I do not understand your message. Please file bugs (http://webkit.org/quality/reporting.html) about the issues you've discovered for WebKit Qt. Ideally with examples. -eric On Tue, Oct 13, 2009 at 12:16 PM, Patrick Roland Gansterer wrote: >> But the damageRect is the whole frame size in >> htt

Re: [webkit-dev] jit, unordered compare

2009-10-16 Thread Zoltan Herczeg
Hi fortunately, no, I don't need double branch here. "cmpvs reg0, reg0" is a conditional instruction, which only executes if the v flag is set. My proposal would be to add a new DoubleCondition called DoubleEqualOrNAN, or something similar to clarify what we expect from the conditional branch. Si