[webkit-dev] Mac EWS failures

2015-07-01 Thread svillar
Hi, it seems that both Mac EWS and Mac WK2 EWS are reporting this failure Regressions: Unexpected image-only failures (1) compositing/masks/compositing-clip-path-origin.html [ ImageOnlyFailure ] which is marking every single new patch to be reviewed as cq-. Apparently bots don't complain s

[webkit-dev] Proposal: Remove CSS color-correction property

2015-07-01 Thread Darin Adler
Hi folks. WebKit has a CSS property named color-correction. It’s still prefixed, so some would call it -webkit-color-correction and I don’t think it’s yet been proposed as a CSS standard. Apple engineers added this a while back so that WebKit could continue interpret webpage and image colors a

Re: [webkit-dev] Mac EWS failures

2015-07-01 Thread Simon Fraser
This is my fault; I’ll look at this today. Simon > On Jul 1, 2015, at 8:30 AM, svillar wrote: > > Hi, > > it seems that both Mac EWS and Mac WK2 EWS are reporting this failure > > Regressions: Unexpected image-only failures (1) > compositing/masks/compositing-clip-path-origin.html [ ImageOnl

[webkit-dev] Invocation with undefined this on JS binding object

2015-07-01 Thread Xabier Rodríguez Calvar
Hello, I need some help with some JS bindings code. I am implementing CountQueuingStrategy [1], which is an object containing two properties, one of them a function. That strategy is passed to another ReadableStream object [2] and as you can see at step 8, the size method is extracted from

Re: [webkit-dev] Invocation with undefined this on JS binding object

2015-07-01 Thread Geoffrey Garen
Hi Xabier. Our bindings assume, by default, that the ‘this’ parameter passed to any DOM interface is an object of the interface’s type. This is how most DOM bindings work. Our bindings also assume that a requested property can be read from the ‘this’ object, which represents the DOM interface.

Re: [webkit-dev] Invocation with undefined this on JS binding object

2015-07-01 Thread Xabier Rodríguez Calvar
Hi, O Mér, 01-07-2015 ás 19:59 +0200, Xabier Rodríguez Calvar escribiu: > The problem is that it checks that "this" casts to the class and of > course it fails because the spec says it has to be undefined. I > haven't > found any way to overcome this, even making the method custom. I gue

Re: [webkit-dev] Invocation with undefined this on JS binding object

2015-07-01 Thread youenn fablet
One way may be to make 'size' an attribute, cachable and returning a JSFunction wrapping a C++ function returning 1. Not sure this will pass signature tests though. This can be done as a custom 'size' function also but I guess you need to return the same JS object all the time. A second approach m

Re: [webkit-dev] Support "registerProtocolHandler" in WebKit2

2015-07-01 Thread Gyuyoung Kim
WebKit2 already has a similar feature, which is so-called *custom protocol* enabled by Mac, Gtk and EFL ports. However the custom protocol feature supports to register custom scheme through API layer instead of JavaScript. The registerProtocolHandler() is to support to register the custom scheme by

Re: [webkit-dev] Proposal: Remove CSS color-correction property

2015-07-01 Thread Dirk Schulze
Hi Darin, > On Jul 1, 2015, at 5:16 PM, Darin Adler wrote: > > Hi folks. > > WebKit has a CSS property named color-correction. It’s still prefixed, so > some would call it -webkit-color-correction and I don’t think it’s yet been > proposed as a CSS standard. > > Apple engineers added this a

Re: [webkit-dev] Proposal: Remove CSS color-correction property

2015-07-01 Thread Tim Horton
> On Jul 1, 2015, at 23:36, Dirk Schulze wrote: > > Hi Darin, > >> On Jul 1, 2015, at 5:16 PM, Darin Adler wrote: >> >> Hi folks. >> >> WebKit has a CSS property named color-correction. It’s still prefixed, so >> some would call it -webkit-color-correction and I don’t think it’s yet been >