Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/FileAPI/blob/Blob-constructor-expected.txt

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/FileAPI/blob/Blob-constructor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/FileAPI/blob/Blob-constructor-expected.txt b/third_party/WebKit/LayoutTests/imported/web-platform-tests/FileAPI/blob/Blob-constructor-expected.txt
deleted file mode 100644
index 3074b7003a86703a6916c8ba668e38dd3193c451..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/FileAPI/blob/Blob-constructor-expected.txt
+++ /dev/null
@@ -1,66 +0,0 @@
-This is a testharness.js-based test.
-PASS Blob interface object
-PASS Blob constructor with no arguments
-PASS Blob constructor with no arguments, without 'new'
-PASS Blob constructor without brackets
-PASS Blob constructor with undefined as first argument
-FAIL Passing non-objects, Dates and RegExps for blobParts should throw a TypeError. assert_throws: Should throw for argument object "[object Object]". function "function () {
- new Blob(arg);
- }" did not throw
-FAIL A plain object with @@iterator should be treated as a sequence for the blobParts argument. Failed to construct 'Blob': The 1st argument is neither an array, nor does it have indexed properties.
-PASS A plain object with @@iterator and a length property should be treated as a sequence for the blobParts argument.
-PASS A String object should be treated as a sequence for the blobParts argument.
-PASS A Uint8Array object should be treated as a sequence for the blobParts argument.
-PASS The length getter should be invoked and any exceptions should be propagated.
-PASS A platform object that supports indexed properties should be treated as a sequence for the blobParts argument (overwritten 'length'.)
-PASS ToUint32 should be applied to the length and any exceptions should be propagated.
-FAIL Getters and value conversions should happen in order until an exception is thrown. assert_array_equals: lengths differ, expected 8 got 5
-PASS ToString should be called on elements of the blobParts array and any exceptions should be propagated.
-FAIL Changes to the blobParts array should be reflected in the returned Blob (pop). assert_equals: expected 4 but got 13
-FAIL Changes to the blobParts array should be reflected in the returned Blob (unshift). assert_equals: expected 4 but got 2
-PASS ToString should be called on elements of the blobParts array.
-PASS ArrayBuffer elements of the blobParts array should be supported.
-PASS Passing typed arrays as elements of the blobParts array should work.
-PASS Passing a Float64Array as element of the blobParts array should work.
-PASS Passing an platform object that supports indexed properties as the blobParts array should work (select).
-PASS Passing a platform array object as the blobParts array should work (MessagePort[]).
-PASS Passing a platform array object as the blobParts array should work (Attr[]).
-PASS Array with two blobs
-PASS Array with two buffers
-PASS Array with two bufferviews
-PASS Array with mixed types
-FAIL The 'endings' property should be ignored. Failed to construct 'Blob': The provided value 'invalidEnumValue' is not a valid enum value of type NormalizeLineEndings.
-PASS options properties should be accessed in lexicographic order.
-PASS Arguments should be evaluated from left to right.
-PASS Passing null (index 0) for options should use the defaults.
-PASS Passing null (index 0) for options should use the defaults (with newlines).
-PASS Passing undefined (index 1) for options should use the defaults.
-PASS Passing undefined (index 1) for options should use the defaults (with newlines).
-PASS Passing object "[object Object]" (index 2) for options should use the defaults.
-PASS Passing object "[object Object]" (index 2) for options should use the defaults (with newlines).
-PASS Passing object "[object Object]" (index 3) for options should use the defaults.
-PASS Passing object "[object Object]" (index 3) for options should use the defaults (with newlines).
-PASS Passing object "/regex/" (index 4) for options should use the defaults.
-PASS Passing object "/regex/" (index 4) for options should use the defaults (with newlines).
-PASS Passing function "function () {}" (index 5) for options should use the defaults.
-PASS Passing function "function () {}" (index 5) for options should use the defaults (with newlines).
-PASS Newlines should not change when endings is 'transparent'.
-FAIL Newlines should not change when endings is 'native'. assert_equals: expected 9 but got 8
-PASS Blob with type ""
-PASS Blob with type "a"
-PASS Blob with type "A"
-PASS Blob with type "text/html"
-PASS Blob with type "TEXT/HTML"
-FAIL Blob with type "å" Failed to construct 'Blob': The 'type' property must consist of ASCII characters.
-FAIL Blob with type "𐑾" Failed to construct 'Blob': The 'type' property must consist of ASCII characters.
-PASS Blob with type " image/gif "
-PASS Blob with type "\timage/gif\t"
-PASS Blob with type "image/gif;"
-FAIL Blob with type "İmage/gif" Failed to construct 'Blob': The 'type' property must consist of ASCII characters.
-FAIL Blob with type "ımage/gif" Failed to construct 'Blob': The 'type' property must consist of ASCII characters.
-PASS Blob with type "image/gif\0"
-PASS Blob with type "unknown/unknown"
-PASS Blob with type "text/plain"
-PASS Blob with type "image/png"
-Harness: the test ran to completion.
-

Powered by Google App Engine
This is Rietveld 408576698