Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / files / file-constructor-expected.txt
blobc55f69d96dbefbedbcacb5f6debfc5f0aa090eed
1 Test the File constructor.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 PASS (new File([], 'world.html')) instanceof window.File is true
7 PASS (new File(['hello'], 'world.html')) instanceof window.File is true
8 PASS (new File(['hello'], 'world.html', {})) instanceof window.File is true
9 PASS (new File(['hello'], 'world.html', {type:'text/html'})) instanceof window.File is true
10 PASS (new File(['hello'], 'world.html', {type:'text/html', endings:'native'})) instanceof window.File is true
11 PASS (new File(['hello'], 'world.html', {type:'text/html', endings:'transparent'})) instanceof window.File is true
12 PASS (new File([], 'world.html')) instanceof window.File is true
13 PASS (new File()) threw exception TypeError: Failed to construct 'File': 2 arguments required, but only 0 present..
14 PASS (new File([])) threw exception TypeError: Failed to construct 'File': 2 arguments required, but only 1 present..
15 PASS (new File([], null)) instanceof window.File is true
16 PASS (new File([], 1)) instanceof window.File is true
17 PASS (new File([], '')) instanceof window.File is true
18 PASS (new File([], document)) instanceof window.File is true
19 PASS new File('hello', 'world.html') threw exception TypeError: Failed to construct 'File': The 1st argument is neither an array, nor does it have indexed properties..
20 PASS new File(0, 'world.html') threw exception TypeError: Failed to construct 'File': The 1st argument is neither an array, nor does it have indexed properties..
21 PASS new File(null, 'world.html') threw exception TypeError: Failed to construct 'File': The 1st argument is neither an array, nor does it have indexed properties..
22 PASS (new File([], 'world.html')) instanceof window.File is true
23 PASS (new File(['stringPrimitive'], 'world.html')) instanceof window.File is true
24 PASS (new File([String('stringObject')], 'world.html')) instanceof window.File is true
25 PASS (new File([new Blob], 'world.html')) instanceof window.File is true
26 PASS (new File([new Blob([new Blob])], 'world.html')) instanceof window.File is true
27 PASS (new Blob([new File([], 'world.txt')])) instanceof window.Blob is true
28 PASS (new Blob([new Blob([new File([new Blob], 'world.txt')])])) instanceof window.Blob is true
29 PASS (new File([new File([], 'world.txt')], 'world.html')) instanceof window.File is true
30 PASS (new File([new Blob([new File([new Blob], 'world.txt')])], 'world.html')) instanceof window.File is true
31 PASS (new File([12], 'world.html')).size is 2
32 PASS (new File([[]], 'world.html')).size is 0
33 PASS (new File([{}], 'world.html')).size is 15
34 PASS (new File([document], 'world.html')).size is 21
35 PASS (new File([toStringingObj], 'world.html')).size is 8
36 PASS new File([throwingObj], 'world.html') threw exception Error.
37 PASS (new File([], null)).name is 'null'
38 PASS (new File([], 12)).name is '12'
39 PASS (new File([], '')).name is ''
40 PASS (new File([], {})).name is '[object Object]'
41 PASS (new File([], document)).name is '[object HTMLDocument]'
42 PASS (new File([], toStringingObj)).name is 'A string'
43 PASS (new File([], throwingObj)).name threw exception Error.
44 PASS (new File([], 'world.html', {unknownKey:'value'})) instanceof window.File is true
45 PASS new File([], 'world.html', {endings:'illegalValue'}) threw exception TypeError: Failed to construct 'File': The provided value 'illegalValue' is not a valid enum value of type NormalizeLineEndings..
46 PASS new File([], 'world.html', {endings:throwingObj}) threw exception Error.
47 PASS new File([], 'world.html', {type:throwingObj}) threw exception Error.
48 PASS new File([], 'world.html', {type:'helloĆ®'}) threw exception SyntaxError: Failed to construct 'File': The 'type' property must consist of ASCII characters..
49 PASS (new File([], 'world.html', null)) instanceof window.File is true
50 PASS (new File([], 'world.html', undefined)) instanceof window.File is true
51 PASS (new File([], 'world.html', 123)) instanceof window.File threw exception TypeError: Failed to construct 'File': parameter 3 ('options') is not an object..
52 PASS (new File([], 'world.html', 123.4)) instanceof window.File threw exception TypeError: Failed to construct 'File': parameter 3 ('options') is not an object..
53 PASS (new File([], 'world.html', true)) instanceof window.File threw exception TypeError: Failed to construct 'File': parameter 3 ('options') is not an object..
54 PASS (new File([], 'world.html', 'abc')) instanceof window.File threw exception TypeError: Failed to construct 'File': parameter 3 ('options') is not an object..
55 PASS (new File([], 'world.html', [])) instanceof window.File is true
56 PASS (new File([], 'world.html', /abc/)) instanceof window.File is true
57 PASS (new File([], 'world.html', function () {})) instanceof window.File is true
58 PASS (new File([], 'world.html', {type:'text/html'})).name is 'world.html'
59 PASS (new File([], 'world.html', {type:'text/html'})).type is 'text/html'
60 PASS (new File([], 'world.html', {type:'text/html'})).size is 0
61 PASS (new File([], 'world.html', {type:'text/plain;charset=UTF-8'})).type is 'text/plain;charset=utf-8'
62 PASS (new File([], 'world.html', {lastModified: 441532800000})).lastModified is 441532800000
63 PASS (new File([], 'world.html')).lastModified is equivalent to Date.now().
64 PASS (new File([], 'world.html', {})).lastModified is equivalent to Date.now().
65 PASS (new File([], 'world.html', {type: 'text/plain'})).lastModified is equivalent to Date.now().
66 PASS (new File([], 'world.html', {lastModified: new Date(441532800000)})).lastModified is 441532800000
67 PASS (new File([], 'world.html', {lastModified: 441532800000})).lastModifiedDate instanceof Date is true
68 PASS (new File([], 'world.html', {lastModified: 441532800000})).lastModifiedDate.valueOf() is 441532800000
69 PASS window.File.length is 2
70 PASS new File([new DataView(new ArrayBuffer(100))], 'world.html').size is 100
71 PASS new File([new Uint8Array(100)], 'world.html').size is 100
72 PASS new File([new Uint8ClampedArray(100)], 'world.html').size is 100
73 PASS new File([new Uint16Array(100)], 'world.html').size is 200
74 PASS new File([new Uint32Array(100)], 'world.html').size is 400
75 PASS new File([new Int8Array(100)], 'world.html').size is 100
76 PASS new File([new Int16Array(100)], 'world.html').size is 200
77 PASS new File([new Int32Array(100)], 'world.html').size is 400
78 PASS new File([new Float32Array(100)], 'world.html').size is 400
79 PASS new File([new Float64Array(100)], 'world.html').size is 800
80 PASS new File([new Float64Array(100), new Int32Array(100), new Uint8Array(100), new DataView(new ArrayBuffer(100))], 'world.html').size is 1400
81 PASS new File([new Blob([new Int32Array(100)]), new Uint8Array(100), new Float32Array(100), new DataView(new ArrayBuffer(100))], 'world.html').size is 1000
82 PASS new File([new Blob([new Int32Array(100)]), new File([new Uint16Array(100)], 'world.txt'), new Uint8Array(100), new Float32Array(100), new DataView(new ArrayBuffer(100))], 'world.html').size is 1200
83 PASS new File([(new DataView(new ArrayBuffer(100))).buffer], 'world.html').size is 100
84 PASS new File([(new Uint8Array(100)).buffer], 'world.html').size is 100
85 PASS new File([(new Uint8ClampedArray(100)).buffer], 'world.html').size is 100
86 PASS new File([(new Uint16Array(100)).buffer], 'world.html').size is 200
87 PASS new File([(new Uint32Array(100)).buffer], 'world.html').size is 400
88 PASS new File([(new Int8Array(100)).buffer], 'world.html').size is 100
89 PASS new File([(new Int16Array(100)).buffer], 'world.html').size is 200
90 PASS new File([(new Int32Array(100)).buffer], 'world.html').size is 400
91 PASS new File([(new Float32Array(100)).buffer], 'world.html').size is 400
92 PASS new File([(new Float64Array(100)).buffer], 'world.html').size is 800
93 PASS new File([(new Float64Array(100)).buffer, (new Int32Array(100)).buffer, (new Uint8Array(100)).buffer, (new DataView(new ArrayBuffer(100))).buffer], 'world.html').size is 1400
94 PASS new File([new Blob([(new Int32Array(100)).buffer]), (new Uint8Array(100)).buffer, (new Float32Array(100)).buffer, (new DataView(new ArrayBuffer(100))).buffer], 'world.html').size is 1000
95 PASS new File([new Blob([(new Int32Array(100)).buffer]), new File([new Uint16Array(100).buffer], 'world.txt'), (new Uint8Array(100)).buffer, (new Float32Array(100)).buffer, (new DataView(new ArrayBuffer(100))).buffer], 'world.html').size is 1200
96 PASS new Blob([new Blob([new Int32Array(100)]), new File([new Uint16Array(100)], 'world.txt'), new Uint8Array(100), new Float32Array(100), new DataView(new ArrayBuffer(100))]).size is 1200
97 PASS new Blob([new Blob([(new Int32Array(100)).buffer]), new File([new Uint16Array(100).buffer], 'world.txt'), (new Uint8Array(100)).buffer, (new Float32Array(100)).buffer, (new DataView(new ArrayBuffer(100))).buffer]).size is 1200
98 PASS new File({length: 0}, 'world.txt').size is 0
99 PASS new File({length: 1, 0: 'string'}, 'world.txt').size is 6
100 PASS successfullyParsed is true
102 TEST COMPLETE