Re: [widgets] test bn in error

2010-12-03 Thread Marcos Caceres
On Wed, Dec 1, 2010 at 12:11 PM, Scott Wilson scott.bradley.wil...@gmail.com wrote: # bn (download, files) Tests the UA's ability to deal with custom icon declarations in the config document and matching default icons. To pass, the icons list must contain a pointer to icons/pass.png, and

Re: [widgets] Error in test case bm

2010-12-03 Thread Marcos Caceres
On Wed, Dec 1, 2010 at 11:47 AM, Scott Wilson scott.bradley.wil...@gmail.com wrote: # bm (download, files) Tests the UA's ability to deal with custom icon declaration in the config document and matching default icons. To pass, the icons list must contain a pointer to locales/en/icon.jpg, and

[widgets] Error in i18n tests for features

2010-12-03 Thread Scott Wilson
# i18nlro30 (download, files) Tests that LRO direction does not apply to the feature element's required attribute. To pass, the value of the required attribute must be treated as false. The actual feature is: feature name=feature:x-bugus-feature required=false dir=rtl/ So as the feature

[widgets] Test widget has wrong content

2010-12-03 Thread Scott Wilson
See: http://dev.w3.org/2006/waf/widgets/test-suite/test-cases/i18n-lro/001/i18nlro01.wgt This is pretty obviously not what should be in here! S smime.p7s Description: S/MIME cryptographic signature

Re: [widgets] Test widget has wrong content

2010-12-03 Thread Marcos Caceres
On Fri, Dec 3, 2010 at 12:19 PM, Scott Wilson scott.bradley.wil...@gmail.com wrote: See: http://dev.w3.org/2006/waf/widgets/test-suite/test-cases/i18n-lro/001/i18nlro01.wgt This is pretty obviously not what should be in here! S Fixed. -- Marcos Caceres Opera Software ASA,

Re: [File API] abort()

2010-12-03 Thread Arun Ranganathan
Anne, - Original Message - Per http://dev.w3.org/2006/webapi/FileAPI/#abort invoking abort() always results in events getting dispatched. This is not what happens in e.g. Gecko at the moment. When the state is EMPTY the method simply returns. To be clear, what is the behavior you

Re: [widgets] Error in i18n tests for features

2010-12-03 Thread Marcos Caceres
On Fri, Dec 3, 2010 at 12:05 PM, Scott Wilson scott.bradley.wil...@gmail.com wrote: # i18nlro30 (download, files) Tests that LRO direction does not apply to the feature element's required attribute. To pass, the value of the required attribute must be treated as false. The actual feature

Re: [widgets] Error in i18n tests for features

2010-12-03 Thread Scott Wilson
On 3 Dec 2010, at 16:28, Marcos Caceres wrote: On Fri, Dec 3, 2010 at 12:05 PM, Scott Wilson scott.bradley.wil...@gmail.com wrote: # i18nlro30 (download, files) Tests that LRO direction does not apply to the feature element's required attribute. To pass, the value of the required

Re: [widgets] Error in i18n tests for features

2010-12-03 Thread Marcos Caceres
On 12/3/10 5:38 PM, Scott Wilson wrote: On 3 Dec 2010, at 16:28, Marcos Caceres wrote: On Fri, Dec 3, 2010 at 12:05 PM, Scott Wilson scott.bradley.wil...@gmail.com wrote: # i18nlro30 (download, files) Tests that LRO direction does not apply to the feature element's required attribute. To

Re: [widgets] Error in i18n tests for features

2010-12-03 Thread Scott Wilson
On 3 Dec 2010, at 16:54, Marcos Caceres wrote: On 12/3/10 5:38 PM, Scott Wilson wrote: On 3 Dec 2010, at 16:28, Marcos Caceres wrote: On Fri, Dec 3, 2010 at 12:05 PM, Scott Wilson scott.bradley.wil...@gmail.com wrote: # i18nlro30 (download, files) Tests that LRO direction does not

Re: Structured clone in WebStorage

2010-12-03 Thread Darin Fisher
Have you guys considered what happens when a Blob is present? I'm very concerned about that case since WebStorage is a synchronous API. If storing a Blob in LocalStorage involves synchronous disk IO, then I'm pretty sure it is something I would object to implementing. I don't think there is a

Re: Structured clone in WebStorage

2010-12-03 Thread Darin Fisher
I will also add that I think WebStorage (well LocalStorage) is terrible from a performance point of view because it is synchronous, and I'd be very happy if we could discourage its usage and give people more reasons to adopt a better API like IndexedDB. -Darin On Fri, Dec 3, 2010 at 10:41 AM,

Re: Structured clone in WebStorage

2010-12-03 Thread Oliver Hunt
I recall talking to hixie about this at some point, and I recall that at that point localstorage was explicitly prevented from Blobs, although I can't see any sign of that rule anymore :-/ --Oliver On Dec 3, 2010, at 10:41 AM, Darin Fisher wrote: Have you guys considered what happens when a

Re: using BlobBuilder append method with generated binary data

2010-12-03 Thread Paul Kinlan
I might have missed something but for appending client-side generated data to a blob can't you just append a UInt8Array as that is based off ArrayBuffer? I use it to generate zip files client side and attach them to an iframe so they are downloaded. P On Thursday, December 2, 2010, Toni Ruottu

Re: Structured clone in WebStorage

2010-12-03 Thread Ian Hickson
On Fri, 3 Dec 2010, Oliver Hunt wrote: I recall talking to hixie about this at some point, and I recall that at that point localstorage was explicitly prevented from Blobs, although I can't see any sign of that rule anymore :-/ Blobs are fine, they're async anyway. To store one you'd just

Re: Structured clone in WebStorage

2010-12-03 Thread João Eiras
On , Darin Fisher da...@chromium.org wrote: I will also add that I think WebStorage (well LocalStorage) is terrible from a performance point of view because it is synchronous, and I'd be very happy if we could discourage its usage and give people more reasons to adopt a better API like