Changeset 202672 in webkit
- Timestamp:
- Jun 29, 2016, 10:10:01 PM (10 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 7 edited
-
ChangeLog (modified) (1 diff)
-
js/dom/constructor-length.html (modified) (2 diffs)
-
platform/efl/js/dom/constructor-length-expected.txt (modified) (2 diffs)
-
platform/gtk/js/dom/constructor-length-expected.txt (modified) (2 diffs)
-
platform/ios-simulator/js/dom/constructor-length-expected.txt (modified) (2 diffs)
-
platform/mac/js/dom/constructor-length-expected.txt (modified) (2 diffs)
-
platform/win/js/dom/constructor-length-expected.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r202671 r202672 1 2016-06-29 Benjamin Poulain <bpoulain@apple.com> 2 3 Attempt to fix constructor-length.html 4 5 I did a rebaseline of constructor-length.html. 6 I should have updated the test instead. 7 8 * js/dom/constructor-length.html: 9 * platform/efl/js/dom/constructor-length-expected.txt: 10 * platform/gtk/js/dom/constructor-length-expected.txt: 11 * platform/ios-simulator/js/dom/constructor-length-expected.txt: 12 * platform/mac/js/dom/constructor-length-expected.txt: 13 * platform/win/js/dom/constructor-length-expected.txt: 14 1 15 2016-06-29 Adam Bergkvist <adam.bergkvist@ericsson.com> 2 16 -
trunk/LayoutTests/js/dom/constructor-length.html
r178310 r202672 18 18 shouldBe('DOMFormData.length', '0'); 19 19 shouldBe('DOMParser.length', '0'); 20 shouldBe('DataView.length', ' 3');20 shouldBe('DataView.length', '0'); 21 21 shouldBe('ErrorEvent.length', '1'); 22 22 shouldBe('Event.length', '1'); 23 23 shouldBe('EventSource.length', '1'); 24 shouldBe('Float32Array.length', ' 3');25 shouldBe('Float64Array.length', ' 3');24 shouldBe('Float32Array.length', '0'); 25 shouldBe('Float64Array.length', '0'); 26 26 shouldBe('FileReader.length', '0'); 27 27 shouldBe('FileReaderSync.length', '0'); 28 28 shouldBe('HashChangeEvent.length', '1'); 29 shouldBe('Int16Array.length', ' 3');30 shouldBe('Int32Array.length', ' 3');31 shouldBe('Int8Array.length', ' 3');29 shouldBe('Int16Array.length', '0'); 30 shouldBe('Int32Array.length', '0'); 31 shouldBe('Int8Array.length', '0'); 32 32 shouldBe('Intent.length', '3'); 33 33 shouldBe('MediaController.length', '0'); … … 44 44 shouldBe('TextTrackCue.length', '3'); 45 45 shouldBe('TrackEvent.length', '1'); 46 shouldBe('Uint16Array.length', ' 3');47 shouldBe('Uint32Array.length', ' 3');48 shouldBe('Uint8Array.length', ' 3');49 shouldBe('Uint8ClampedArray.length', ' 3');46 shouldBe('Uint16Array.length', '0'); 47 shouldBe('Uint32Array.length', '0'); 48 shouldBe('Uint8Array.length', '0'); 49 shouldBe('Uint8ClampedArray.length', '0'); 50 50 shouldBe('VTTCue.length', '3'); 51 51 shouldBe('WebGLContextEvent.length', '1'); -
trunk/LayoutTests/platform/efl/js/dom/constructor-length-expected.txt
r187340 r202672 14 14 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData 15 15 PASS DOMParser.length is 0 16 PASS DataView.length is 316 PASS DataView.length is 0 17 17 PASS ErrorEvent.length is 1 18 18 PASS Event.length is 1 19 19 PASS EventSource.length is 1 20 PASS Float32Array.length is 321 PASS Float64Array.length is 320 PASS Float32Array.length is 0 21 PASS Float64Array.length is 0 22 22 PASS FileReader.length is 0 23 23 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync 24 24 PASS HashChangeEvent.length is 1 25 PASS Int16Array.length is 326 PASS Int32Array.length is 327 PASS Int8Array.length is 325 PASS Int16Array.length is 0 26 PASS Int32Array.length is 0 27 PASS Int8Array.length is 0 28 28 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent 29 29 PASS MediaController.length is 0 … … 40 40 PASS TextTrackCue.length is 3 41 41 PASS TrackEvent.length is 1 42 PASS Uint16Array.length is 343 PASS Uint32Array.length is 344 PASS Uint8Array.length is 345 PASS Uint8ClampedArray.length is 342 PASS Uint16Array.length is 0 43 PASS Uint32Array.length is 0 44 PASS Uint8Array.length is 0 45 PASS Uint8ClampedArray.length is 0 46 46 PASS VTTCue.length is 3 47 47 PASS WebGLContextEvent.length is 1 -
trunk/LayoutTests/platform/gtk/js/dom/constructor-length-expected.txt
r178310 r202672 14 14 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData 15 15 PASS DOMParser.length is 0 16 PASS DataView.length is 316 PASS DataView.length is 0 17 17 PASS ErrorEvent.length is 1 18 18 PASS Event.length is 1 19 19 PASS EventSource.length is 1 20 PASS Float32Array.length is 321 PASS Float64Array.length is 320 PASS Float32Array.length is 0 21 PASS Float64Array.length is 0 22 22 PASS FileReader.length is 0 23 23 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync 24 24 PASS HashChangeEvent.length is 1 25 PASS Int16Array.length is 326 PASS Int32Array.length is 327 PASS Int8Array.length is 325 PASS Int16Array.length is 0 26 PASS Int32Array.length is 0 27 PASS Int8Array.length is 0 28 28 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent 29 29 PASS MediaController.length is 0 … … 40 40 PASS TextTrackCue.length is 3 41 41 PASS TrackEvent.length is 1 42 PASS Uint16Array.length is 343 PASS Uint32Array.length is 344 PASS Uint8Array.length is 345 PASS Uint8ClampedArray.length is 342 PASS Uint16Array.length is 0 43 PASS Uint32Array.length is 0 44 PASS Uint8Array.length is 0 45 PASS Uint8ClampedArray.length is 0 46 46 PASS VTTCue.length is 3 47 47 PASS WebGLContextEvent.length is 1 -
trunk/LayoutTests/platform/ios-simulator/js/dom/constructor-length-expected.txt
r189980 r202672 14 14 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData 15 15 PASS DOMParser.length is 0 16 PASS DataView.length is 316 PASS DataView.length is 0 17 17 PASS ErrorEvent.length is 1 18 18 PASS Event.length is 1 19 19 PASS EventSource.length is 1 20 PASS Float32Array.length is 321 PASS Float64Array.length is 320 PASS Float32Array.length is 0 21 PASS Float64Array.length is 0 22 22 PASS FileReader.length is 0 23 23 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync 24 24 PASS HashChangeEvent.length is 1 25 PASS Int16Array.length is 326 PASS Int32Array.length is 327 PASS Int8Array.length is 325 PASS Int16Array.length is 0 26 PASS Int32Array.length is 0 27 PASS Int8Array.length is 0 28 28 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent 29 29 PASS MediaController.length is 0 … … 40 40 PASS TextTrackCue.length is 3 41 41 PASS TrackEvent.length is 1 42 PASS Uint16Array.length is 343 PASS Uint32Array.length is 344 PASS Uint8Array.length is 345 PASS Uint8ClampedArray.length is 342 PASS Uint16Array.length is 0 43 PASS Uint32Array.length is 0 44 PASS Uint8Array.length is 0 45 PASS Uint8ClampedArray.length is 0 46 46 PASS VTTCue.length is 3 47 47 PASS WebGLContextEvent.length is 1 -
trunk/LayoutTests/platform/mac/js/dom/constructor-length-expected.txt
r202667 r202672 14 14 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData 15 15 PASS DOMParser.length is 0 16 FAIL DataView.length should be 3. Was 0. 16 PASS DataView.length is 0 17 17 PASS ErrorEvent.length is 1 18 18 PASS Event.length is 1 19 19 PASS EventSource.length is 1 20 FAIL Float32Array.length should be 3. Was 0. 21 FAIL Float64Array.length should be 3. Was 0. 20 PASS Float32Array.length is 0 21 PASS Float64Array.length is 0 22 22 PASS FileReader.length is 0 23 23 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync 24 24 PASS HashChangeEvent.length is 1 25 FAIL Int16Array.length should be 3. Was 0. 26 FAIL Int32Array.length should be 3. Was 0. 27 FAIL Int8Array.length should be 3. Was 0. 25 PASS Int16Array.length is 0 26 PASS Int32Array.length is 0 27 PASS Int8Array.length is 0 28 28 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent 29 29 PASS MediaController.length is 0 … … 40 40 PASS TextTrackCue.length is 3 41 41 PASS TrackEvent.length is 1 42 FAIL Uint16Array.length should be 3. Was 0. 43 FAIL Uint32Array.length should be 3. Was 0. 44 FAIL Uint8Array.length should be 3. Was 0. 45 FAIL Uint8ClampedArray.length should be 3. Was 0. 42 PASS Uint16Array.length is 0 43 PASS Uint32Array.length is 0 44 PASS Uint8Array.length is 0 45 PASS Uint8ClampedArray.length is 0 46 46 PASS VTTCue.length is 3 47 47 PASS WebGLContextEvent.length is 1 -
trunk/LayoutTests/platform/win/js/dom/constructor-length-expected.txt
r185745 r202672 14 14 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData 15 15 PASS DOMParser.length is 0 16 PASS DataView.length is 316 PASS DataView.length is 0 17 17 PASS ErrorEvent.length is 1 18 18 PASS Event.length is 1 19 19 PASS EventSource.length is 1 20 PASS Float32Array.length is 321 PASS Float64Array.length is 320 PASS Float32Array.length is 0 21 PASS Float64Array.length is 0 22 22 PASS FileReader.length is 0 23 23 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync 24 24 PASS HashChangeEvent.length is 1 25 PASS Int16Array.length is 326 PASS Int32Array.length is 327 PASS Int8Array.length is 325 PASS Int16Array.length is 0 26 PASS Int32Array.length is 0 27 PASS Int8Array.length is 0 28 28 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent 29 29 PASS MediaController.length is 0 … … 40 40 PASS TextTrackCue.length is 3 41 41 PASS TrackEvent.length is 1 42 PASS Uint16Array.length is 343 PASS Uint32Array.length is 344 PASS Uint8Array.length is 345 PASS Uint8ClampedArray.length is 342 PASS Uint16Array.length is 0 43 PASS Uint32Array.length is 0 44 PASS Uint8Array.length is 0 45 PASS Uint8ClampedArray.length is 0 46 46 PASS VTTCue.length is 3 47 47 FAIL WebGLContextEvent.length should be 1. Threw exception ReferenceError: Can't find variable: WebGLContextEvent
Note:
See TracChangeset
for help on using the changeset viewer.