Index: LayoutTests/fast/files/blob-constructor-expected.txt |
diff --git a/LayoutTests/fast/files/blob-constructor-expected.txt b/LayoutTests/fast/files/blob-constructor-expected.txt |
index 8d65661f64dae518a917c61af988a7272aa30f65..c25b6b45dff48c464ec06af6a597ebd93f9920ad 100644 |
--- a/LayoutTests/fast/files/blob-constructor-expected.txt |
+++ b/LayoutTests/fast/files/blob-constructor-expected.txt |
@@ -43,6 +43,9 @@ PASS (new Blob([], function () {})) instanceof window.Blob is true |
PASS (new Blob([], {type:'text/html'})).type is 'text/html' |
PASS (new Blob([], {type:'text/html'})).size is 0 |
PASS (new Blob([], {type:'text/plain;charset=UTF-8'})).type is 'text/plain;charset=utf-8' |
+PASS (new Blob([])).lastModified is undefined |
+PASS (new Blob([], {})).lastModified is undefined |
+PASS (new Blob([], {lastModified: new Date()})).lastModified is undefined |
PASS window.Blob.length is 0 |
PASS new Blob([new DataView(new ArrayBuffer(100))]).size is 100 |
PASS new Blob([new Uint8Array(100)]).size is 100 |