[webkit-dev] Runtime setting for incomplete features

2009-09-08 Thread Darin Fisher
As is described in https://bugs.webkit.org/show_bug.cgi?id=28941, for the Chromium project, we like to make incomplete features available behind a command line flag to help facilitate testing. I understand that the norm for WebKit is to only have compile time options for new / incomplete features.

Re: [webkit-dev] Support sending multiple files via XMLHttpRequest.send()

2009-09-08 Thread Darin Fisher
On Tue, Sep 8, 2009 at 11:11 PM, Maciej Stachowiak wrote: > > On Sep 8, 2009, at 10:49 PM, Darin Fisher wrote: > > > > On Tue, Sep 8, 2009 at 6:22 PM, Maciej Stachowiak wrote: > >> >> On Sep 8, 2009, at 6:16 PM, Jian Li wrote: >> >> In WebKit, XMLHttpRequest.send() supports sending single file.

Re: [webkit-dev] Support sending multiple files via XMLHttpRequest.send()

2009-09-08 Thread Maciej Stachowiak
On Sep 8, 2009, at 10:49 PM, Darin Fisher wrote: On Tue, Sep 8, 2009 at 6:22 PM, Maciej Stachowiak wrote: On Sep 8, 2009, at 6:16 PM, Jian Li wrote: In WebKit, XMLHttpRequest.send() supports sending single file. It would be better if we can support sending multiple files, like FileL

Re: [webkit-dev] Support sending multiple files via XMLHttpRequest.send()

2009-09-08 Thread Darin Fisher
On Tue, Sep 8, 2009 at 6:22 PM, Maciej Stachowiak wrote: > > On Sep 8, 2009, at 6:16 PM, Jian Li wrote: > > In WebKit, XMLHttpRequest.send() supports sending single file. It would be > better if we can support sending multiple files, like FileList (see bug > 25923

Re: [webkit-dev] Stretchy Characters

2009-09-08 Thread Roland Steiner
Hi Alex, AFAIK, the approach of stacking special characters goes back to TeX, and you even have special Unicode code points for this purpose (see http://www.unicode.org/charts/PDF/U2300.pdf), so the approach at least has broad consensus. ^_- You're right however, that having the right font glyphs

Re: [webkit-dev] Support sending multiple files via XMLHttpRequest.send()

2009-09-08 Thread Jeremy Orlow
Agreed. This seems like a great thread for public-webapps. On Wed, Sep 9, 2009 at 10:22 AM, Maciej Stachowiak wrote: > > On Sep 8, 2009, at 6:16 PM, Jian Li wrote: > > In WebKit, XMLHttpRequest.send() supports sending single file. It would be > better if we can support sending multiple files, l

Re: [webkit-dev] JSON.stringify(Date) losts the milliseconds information

2009-09-08 Thread 白石俊平
> Please file a bug: OK, I filed bug as: https://bugs.webkit.org/show_bug.cgi?id=29063 and, I tested current implementations' behavior and attached test case. thanks. -shumpei On Tue, Sep 8, 2009 at 9:36 PM, Eric Seidel wrote: > Please file a bug: > http://webkit.org/quality/reporting.html >

Re: [webkit-dev] Support sending multiple files via XMLHttpRequest.send()

2009-09-08 Thread Maciej Stachowiak
On Sep 8, 2009, at 6:16 PM, Jian Li wrote: In WebKit, XMLHttpRequest.send() supports sending single file. It would be better if we can support sending multiple files, like FileList (see bug 25923). In addition, XMLHttpRequest.send() only sends the raw content of the file, without includi

[webkit-dev] Support sending multiple files via XMLHttpRequest.send()

2009-09-08 Thread Jian Li
In WebKit, XMLHttpRequest.send() supports sending single file. It would be better if we can support sending multiple files, like FileList (see bug 25923 ). In addition, XMLHttpRequest.send() only sends the raw content of the file, without including the

[webkit-dev] Stretchy Characters

2009-09-08 Thread Alex Milowski
I've been looking around to see how stretching of characters is handled in other typesetting systems. I stumbled across this article about how Mozilla handles this: http://www.mozilla.org/projects/mathml/fonts/encoding/ They compose a single stretchy character (e.g a right curly brack { ) fro

[webkit-dev] mfenced - more MathML questions

2009-09-08 Thread Alex Milowski
I've been doing some comprehensive testing and find that my technique for handling fencing isn't working properly when use in nest constructs or other situations. Specifically, the two major problems are: * the fences do not scale well for large objects * nested fencing does not seem to be

[webkit-dev] Commit Queue this weekend

2009-09-08 Thread Eric Seidel
Sorry for the delays with the commit-queue this weekend. I checked it this morning to find it spinning with 4 queued patches due to https://bugs.webkit.org/show_bug.cgi?id=28605. Fixed now. The commit-queue is still wrongly rejecting some patches due to flakey/crashy media tests. https://bugs.webk

Re: [webkit-dev] mod_pywebsocket for testing Web Socket implementation

2009-09-08 Thread Alexey Proskuryakov
07.09.2009, в 21:30, Yuzo Fujishima написал(а): Would installing mod_python and mod_pywebsocket be very difficult? As others already stated, making the user install additional modules is undesirable. My original comment was about having a simple module implementation that could be built

Re: [webkit-dev] Scroll bars in DumpRenderTree snapshots

2009-09-08 Thread Avi Drissman
Aha. Do you have any advice on calculating the HIThemeTrackDrawInfo's viewsize parameter to make the thumb match up size-wise with an NSScroller's thumb? The only advice I've ever found is to make it the page-scroll size (and that's what ScrollbarThemeMac does) but that's giving a thumb too big.

Re: [webkit-dev] Scroll bars in DumpRenderTree snapshots

2009-09-08 Thread David Hyatt
On Sep 8, 2009, at 11:25 AM, Darin Adler wrote: On Sep 8, 2009, at 8:00 AM, Avi Drissman wrote: I thought WebCore had moved away from using Cocoa for scrolling. No, it has not. -- Darin For document-level scrolling, the Mac still uses an NSScrollView. For scrollbars in overflowing

Re: [webkit-dev] Scroll bars in DumpRenderTree snapshots

2009-09-08 Thread Darin Adler
On Sep 8, 2009, at 8:00 AM, Avi Drissman wrote: I thought WebCore had moved away from using Cocoa for scrolling. No, it has not. -- Darin ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webki

[webkit-dev] Scroll bars in DumpRenderTree snapshots

2009-09-08 Thread Avi Drissman
As you might know, on the Chromium project we're adapted DumpRenderTree into our TestShell, and we use it to dump layout test snapshots and do pixel tests. Well, we run pixel tests on Linux and Windows, but we don't do it on the Mac (yet). And that's because we'd like to compare to the baseline im

Re: [webkit-dev] JSON.stringify(Date) losts the milliseconds information

2009-09-08 Thread Eric Seidel
Please file a bug:http://webkit.org/quality/reporting.html Ideally one which shows how our behavior differs from other browsers with a nice clear test case. -eric On Sun, Sep 6, 2009 at 10:30 PM, 白石俊平 wrote: > Hi > > I tried to use the JSON.stringify() for Date object on Safari4 and > WebKit n

Re: [webkit-dev] JSON.stringify(Date) losts the milliseconds information

2009-09-08 Thread Patrick Mueller
白石俊平 wrote: I tried to use the JSON.stringify() for Date object on Safari4 and WebKit nightly build(48096), so I got result as follows. JSON.stringify(new Date()); 2009-09-07T04:49:43Z This result seems that milliseconds information of date is lost. For some applications, millis info is impor

Re: [webkit-dev] mod_pywebsocket for testing Web Socket implementation

2009-09-08 Thread Yuzo Fujishima
Hi, Maciej, On Tue, Sep 8, 2009 at 3:24 PM, Maciej Stachowiak wrote: On Sep 7, 2009, at 10:41 PM, Yuzo Fujishima wrote: Building and installing some Apache modules doesn't seem like that big a deal to me, if it would really make testing more practical. However, it seems like using a prem