[webkit-dev] Layering weirdness in chrome tree

2009-11-10 Thread Oliver Hunt
I just noticed that there are a bunch of WebCore platform implementations being landed in Chrome's WebKit API rather than in WebCore/platform. This seems incorrect to me as there is no other place where this sort of mis-layering occurred, the obvious files that stand out are:

Re: [webkit-dev] Layering weirdness in chrome tree

2009-11-10 Thread Adam Barth
That sounds like a bug to me. Historically the chromium port hasn't had a strong distinction between WebKit and WebCore/platform, but I think it's a worthwhile distinction to make. Adam On Tue, Nov 10, 2009 at 11:53 AM, Oliver Hunt oli...@apple.com wrote: I just noticed that there are a bunch

Re: [webkit-dev] git.webkit.org/WebKit.git out of sync from svn repository?

2009-11-10 Thread Yaar Schnitman
Hi all, I think we have this problem again. Webkit svn is on r50761, but I can only git pull up to r50738. -Yaar On Sun, Nov 8, 2009 at 5:11 PM, Fumitoshi Ukai (鵜飼文敏) u...@chromium.orgwrote: On Sat, Nov 7, 2009 at 6:10 AM, William Siegrist wsiegr...@apple.comwrote: On Nov 5, 2009, at 8:32

Re: [webkit-dev] git.webkit.org/WebKit.git out of sync from svn repository?

2009-11-10 Thread Mark Rowe
On 2009-11-10, at 13:58, Yaar Schnitman wrote: Hi all, I think we have this problem again. Webkit svn is on r50761, but I can only git pull up to r50738. This is fixed. - Mark On Sun, Nov 8, 2009 at 5:11 PM, Fumitoshi Ukai (鵜飼文敏) u...@chromium.org wrote: On Sat, Nov 7, 2009 at 6:10

[webkit-dev] access webkit-fake-url data?

2009-11-10 Thread Clifford Meece
When you paste image content into an editable content region, webkit produces URL's similar to the following: webkit-fake-url://DCAC99B9-BA40-4BA7-A419-9C60AAB081DA/image.png Is there anyway to access that data? In particular I'm trying to get at the data from a tinyMCE instance running in

[webkit-dev] Question on standards mode vs. site compatibility

2009-11-10 Thread Chris Evans
Hi, Whilst mining a large list of URLs, I came across some sites that render incorrectly in WebKit but fine in IE. It turns out there exist some sites which declare themselves standards complaint in their HTML via their DTD. These sites then proceed to try and load CSS resources with the

[webkit-dev] Running WebGL layout tests

2009-11-10 Thread Kenneth Russell
Hi, Trying to run the WebGL layout tests in LayoutTests/fast/canvas/webgl. Here's the command line I'm using: run-webkit-tests --debug LayoutTests/fast/canvas/webgl/[test name.html] (I built WebKit --debug.) All of the tests fail while attempting to fetch the 3D context. (TypeError: Result of

[webkit-dev] InkML

2009-11-10 Thread Ishan Ahuja
Hi, I was wondering if there are any plans of implementing InkML (http://www.w3.org/2002/mmi/ink ) rendering in webkit - or would you rather have it as a plug-in. Thanks, Ishan ___ webkit-dev mailing list webkit-dev@lists.webkit.org

[webkit-dev] access webkit-fake-url data

2009-11-10 Thread Clifford Meece
When an image (for example) is pasted from the clipboard into a webkit editable content region, the source code looks like this: webkit-fake-url://DCAC99B9-BA40-4BA7-A419-9C60AAB081DA/image.png Where is the actual data stored in this instance? -- View this message in context:

[webkit-dev] WTFNoncopyable namespace and ADL

2009-11-10 Thread Chris Jerdonek
I have a question regarding JSC's WTFNoncopyable::Noncopyable class and argument-dependent lookup (ADL). It seems like an old decision may have been unintentionally undone in changeset 46933 (first attempted in 46877). The Noncopyable class (currently JavaScriptCore/wtf/Noncopyable.h) was

[webkit-dev] ruby annotation layout tests

2009-11-10 Thread Andras Becsi
Hello, I have a question about the following HTML5 ruby annotation (http://www.w3.org/TR/ruby/) layout tests: fast/ruby/ruby-empty-rt.html fast/ruby/ruby-length.html fast/ruby/ruby-run-break.html fast/ruby/ruby-runs-spans.html fast/ruby/ruby-runs.html fast/ruby/ruby-simple-rp.html

[webkit-dev] caching of static files

2009-11-10 Thread Rick Gigger
Please let me know if this is not the right place to post this question. I am new to this list. I have noticed that Safari and Firefox seem to use different strategies for caching static files. It seems that when I have the expiration headers set properly that Firefox does not request them

[webkit-dev] using namespace style guideline

2009-11-10 Thread Chris Jerdonek
Hi, I have a question about the last of the WebKit Coding Style Guidelines: http://webkit.org/coding/coding-style.html It's the second of these two: 1. Any using namespace statements for a nested namespace whose parent namespace is also defined in a file must be declared within that namespace

Re: [webkit-dev] using namespace style guideline

2009-11-10 Thread Darin Adler
On Nov 10, 2009, at 7:41 PM, Chris Jerdonek wrote: Hi, I have a question about the last of the WebKit Coding Style Guidelines: http://webkit.org/coding/coding-style.html It's the second of these two: 1. Any using namespace statements for a nested namespace whose parent namespace is

Re: [webkit-dev] caching of static files

2009-11-10 Thread Darin Adler
On Nov 10, 2009, at 2:29 PM, Rick Gigger wrote: I have noticed that Safari and Firefox seem to use different strategies for caching static files. It seems that when I have the expiration headers set properly that Firefox does not request them at all until they are expired but Safari

Re: [webkit-dev] Question on standards mode vs. site compatibility

2009-11-10 Thread Darin Adler
On Nov 2, 2009, at 11:19 PM, Chris Evans wrote: Whilst mining a large list of URLs, I came across some sites that render incorrectly in WebKit but fine in IE. It turns out there exist some sites which declare themselves standards complaint in their HTML via their DTD. These sites then

Re: [webkit-dev] WTFNoncopyable namespace and ADL

2009-11-10 Thread Darin Adler
On Nov 8, 2009, at 12:21 AM, Chris Jerdonek wrote: I have a question regarding JSC's WTFNoncopyable::Noncopyable class and argument-dependent lookup (ADL). It seems like an old decision may have been unintentionally undone in changeset 46933. I’m surprised that nothing depended on the

Re: [webkit-dev] Question on standards mode vs. site compatibility

2009-11-10 Thread Chris Evans
On Tue, Nov 10, 2009 at 8:37 PM, Darin Adler da...@apple.com wrote: On Nov 2, 2009, at 11:19 PM, Chris Evans wrote: Whilst mining a large list of URLs, I came across some sites that render incorrectly in WebKit but fine in IE. It turns out there exist some sites which declare themselves

Re: [webkit-dev] Question on standards mode vs. site compatibility

2009-11-10 Thread David Kilzer
Both Firefox http://bugzilla.mozilla.org/ and WebKit https://bugs.webkit.org/ allow you to file evangelism bugs on any web site. Perhaps it would be best to try that approach first? Dave From: Chris Evans cev...@chromium.org To: Darin Adler da...@apple.com Cc: webkit-dev@lists.webkit.org