Changeset 119479 in webkit
- Timestamp:
- Jun 5, 2012, 3:57:00 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/chromium/TestExpectations (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r119476 r119479 1 2012-06-04 Kinuko Yasuda <kinuko@chromium.org> 2 3 Chromium tests: "Add support for the Blob constructor" [r115582] regressed blob layout tests 4 https://bugs.webkit.org/show_bug.cgi?id=85174 5 6 Reviewed by Kentaro Hara. 7 8 Changing blob-constructor.html label from CRASH to TEXT. 9 10 * platform/chromium/TestExpectations: 11 1 12 2012-06-05 Kenichi Ishibashi <bashi@chromium.org> 2 13 -
trunk/LayoutTests/platform/chromium/TestExpectations
r119476 r119479 3613 3613 BUGWK85106 SLOW : tables/mozilla/other/slashlogo.html = PASS 3614 3614 3615 BUGWK85174 : fast/files/blob-constructor.html = CRASH3615 BUGWK85174 : fast/files/blob-constructor.html = TEXT 3616 3616 BUGWK85174 : fast/dom/HTMLAnchorElement/anchor-download-unset.html = TIMEOUT 3617 3617 BUGWK85174 : fast/filesystem/file-writer-gc-blob.html = TIMEOUT -
trunk/Source/WebCore/ChangeLog
r119478 r119479 1 2012-06-04 Kinuko Yasuda <kinuko@chromium.org> 2 3 Chromium tests: "Add support for the Blob constructor" [r115582] regressed blob layout tests 4 https://bugs.webkit.org/show_bug.cgi?id=85174 5 6 Reviewed by Kentaro Hara. 7 8 This fixes a crash problem which could happen when the constructor is 9 given an array which contains String-type item(s). 10 11 There're still some Text mismatches between v8 results and 12 JSC results, most of them are v8 not throwing exception 13 when it is given an object whose toString() method throws 14 exception. (The issue will be addresse in a separate patch.) 15 16 Test: fast/files/blob-constructor.html 17 18 * bindings/v8/custom/V8BlobCustom.cpp: 19 (WebCore::V8Blob::constructorCallback): 20 1 21 2012-06-05 Kentaro Hara <haraken@chromium.org> 2 22 -
trunk/Source/WebCore/bindings/v8/custom/V8BlobCustom.cpp
r119001 r119479 127 127 blobBuilder->append(blob); 128 128 } else { 129 EXCEPTION_BLOCK(String, stringValue, toWebCoreString(item ->ToString()));129 EXCEPTION_BLOCK(String, stringValue, toWebCoreString(item)); 130 130 blobBuilder->append(stringValue, endings, ASSERT_NO_EXCEPTION); 131 131 }
Note:
See TracChangeset
for help on using the changeset viewer.