Re: Restricting gUM to authenticated origins only

2014-09-07 Thread Henri Sivonen
On Fri, Sep 5, 2014 at 4:15 PM, Eric Rescorla wrote: > > > > On Fri, Sep 5, 2014 at 3:34 AM, Henri Sivonen wrote: >> >> On Fri, Sep 5, 2014 at 1:25 PM, Robert O'Callahan >> wrote: >> > On Fri, Sep 5, 2014 at 10:19 PM, Henri Sivonen >> > wrote: >> >> Is current gUM restricted to authenticated or

Re: Extension development - Compilation issues with Firefox 33 SDK

2014-09-07 Thread Bobby Holley
Yes, JS symbols are no longer exported. You can't use JSAPI from non-Gecko code anymore. On Sat, Sep 6, 2014 at 9:06 PM, Shanmugham Sundaram wrote: > Hi, > > As part of our FF extension development, we are using FF SDK (which was > obtained after compiling FF 33 beta source code in MS 2010). The

Re: web-platform-tests now running in automation

2014-09-07 Thread Boris Zbarsky
On 9/7/14, 10:21 AM, James Graham wrote: There isn't anything at the moment, but it seems like a good idea to invent something. The easiest thing would be a new key-value pair like expected-reason: Some reason string Do you have a preferred syntax here? Nope. Pretty much anything works for m

Re: web-platform-tests now running in automation

2014-09-07 Thread James Graham
On 07/09/14 12:34, Aryeh Gregor wrote: > On Fri, Sep 5, 2014 at 8:23 PM, James Graham wrote: >> I think Ms2ger has a better answer here, but I believe it obsoletes most >> of them, except a few that never got submitted to web-platform-tests >> (the editing tests are in that class, because the spec

Re: web-platform-tests now running in automation

2014-09-07 Thread James Graham
On 06/09/14 05:05, Boris Zbarsky wrote: > On 9/5/14, 11:55 AM, James Graham wrote: >> Instructions for performing the updates are in the README file >> [2]. There is tooling available to help in the update process. > > Is there a way to document the spec or test suite bugs in the > expectations fi

Re: Restricting gUM to authenticated origins only

2014-09-07 Thread Jesper Kristensen
Den 05-09-2014 kl. 12:47 skrev Robert O'Callahan: Cookies are segregated by http vs https, right? No, unfortunately they are not. Numerous attempts at fixing it has been rejected by browser vendors. For example http://tools.ietf.org/html/draft-abarth-cake-01

Re: web-platform-tests now running in automation

2014-09-07 Thread Aryeh Gregor
On Fri, Sep 5, 2014 at 8:23 PM, James Graham wrote: > I think Ms2ger has a better answer here, but I believe it obsoletes most > of them, except a few that never got submitted to web-platform-tests > (the editing tests are in that class, because the spec effort sort of died). FWIW, the editing te

Re: Extension development - Compilation issues with Firefox 33 SDK

2014-09-07 Thread Neil
Shanmugham Sundaram wrote: Till FF 32, we did not have issue in compiling the following function const jschar* GetStringCharsZ(JSContext *cx, JSString *str) const throw() { if( !cx || !str) { return NULL; } return JS_GetStringCharsZ(cx, str); }