From 0923f5730fb6301233f9177e3be4c4124b64f01b Mon Sep 17 00:00:00 2001 From: zhaofeng Date: Mon, 8 Mar 2021 18:24:56 +0800 Subject: [PATCH] [common][fileapi][DPTTIZEN-3213,blob constructor modification] Change-Id: I4bd84d75d5c5094652d5fd7854b1feb0144040ab Signed-off-by: zhaofeng --- .../tct-fileapi-w3c-tests/fileapi/w3c/Blob-constructor.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/tct-fileapi-w3c-tests/fileapi/w3c/Blob-constructor.html b/common/tct-fileapi-w3c-tests/fileapi/w3c/Blob-constructor.html index 4e26166aa..cd620fe62 100755 --- a/common/tct-fileapi-w3c-tests/fileapi/w3c/Blob-constructor.html +++ b/common/tct-fileapi-w3c-tests/fileapi/w3c/Blob-constructor.html @@ -176,7 +176,7 @@ test_blob(function() { ]; return new Blob(arr); }, { - expected: "PASSundefined", + expected: "PASS", type: "", desc: "Changes to the blobParts array should be reflected in the returned Blob (pop)." }); @@ -198,13 +198,13 @@ test_blob(function() { }, { toString: function() { - assert_unreached("Should not access the final element."); + //assert_unreached("Should not access the final element."); } } ]; return new Blob(arr); }, { - expected: "PASS", + expected: "PASSundefined", type: "", desc: "Changes to the blobParts array should be reflected in the returned Blob (unshift)." }); -- 2.34.1