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

Unified Diff: LayoutTests/fast/files/blob-constructor-expected.txt

Issue 74213009: File constructor understands lastModified. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed feedback. Created 7 years, 1 month 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
« no previous file with comments | « LayoutTests/fast/files/blob-constructor.html ('k') | LayoutTests/fast/files/file-constructor.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « LayoutTests/fast/files/blob-constructor.html ('k') | LayoutTests/fast/files/file-constructor.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698