Title: [202672] trunk/LayoutTests
Revision
202672
Author
benja...@webkit.org
Date
2016-06-29 22:10:01 -0700 (Wed, 29 Jun 2016)

Log Message

Attempt to fix constructor-length.html

I did a rebaseline of constructor-length.html.
I should have updated the test instead.

Patch by Benjamin Poulain <bpoul...@apple.com> on 2016-06-29

* js/dom/constructor-length.html:
* platform/efl/js/dom/constructor-length-expected.txt:
* platform/gtk/js/dom/constructor-length-expected.txt:
* platform/ios-simulator/js/dom/constructor-length-expected.txt:
* platform/mac/js/dom/constructor-length-expected.txt:
* platform/win/js/dom/constructor-length-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (202671 => 202672)


--- trunk/LayoutTests/ChangeLog	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/ChangeLog	2016-06-30 05:10:01 UTC (rev 202672)
@@ -1,3 +1,17 @@
+2016-06-29  Benjamin Poulain  <bpoul...@apple.com>
+
+        Attempt to fix constructor-length.html
+
+        I did a rebaseline of constructor-length.html.
+        I should have updated the test instead.
+
+        * js/dom/constructor-length.html:
+        * platform/efl/js/dom/constructor-length-expected.txt:
+        * platform/gtk/js/dom/constructor-length-expected.txt:
+        * platform/ios-simulator/js/dom/constructor-length-expected.txt:
+        * platform/mac/js/dom/constructor-length-expected.txt:
+        * platform/win/js/dom/constructor-length-expected.txt:
+
 2016-06-29  Adam Bergkvist  <adam.bergkv...@ericsson.com>
 
         WebRTC: Implement MediaEndpointPeerConnection::setConfiguration()

Modified: trunk/LayoutTests/js/dom/constructor-length.html (202671 => 202672)


--- trunk/LayoutTests/js/dom/constructor-length.html	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/js/dom/constructor-length.html	2016-06-30 05:10:01 UTC (rev 202672)
@@ -17,18 +17,18 @@
 shouldBe('CustomEvent.length', '1');
 shouldBe('DOMFormData.length', '0');
 shouldBe('DOMParser.length', '0');
-shouldBe('DataView.length', '3');
+shouldBe('DataView.length', '0');
 shouldBe('ErrorEvent.length', '1');
 shouldBe('Event.length', '1');
 shouldBe('EventSource.length', '1');
-shouldBe('Float32Array.length', '3');
-shouldBe('Float64Array.length', '3');
+shouldBe('Float32Array.length', '0');
+shouldBe('Float64Array.length', '0');
 shouldBe('FileReader.length', '0');
 shouldBe('FileReaderSync.length', '0');
 shouldBe('HashChangeEvent.length', '1');
-shouldBe('Int16Array.length', '3');
-shouldBe('Int32Array.length', '3');
-shouldBe('Int8Array.length', '3');
+shouldBe('Int16Array.length', '0');
+shouldBe('Int32Array.length', '0');
+shouldBe('Int8Array.length', '0');
 shouldBe('Intent.length', '3');
 shouldBe('MediaController.length', '0');
 shouldBe('MediaStream.length', '0');
@@ -43,10 +43,10 @@
 shouldBe('StorageEvent.length', '1');
 shouldBe('TextTrackCue.length', '3');
 shouldBe('TrackEvent.length', '1');
-shouldBe('Uint16Array.length', '3');
-shouldBe('Uint32Array.length', '3');
-shouldBe('Uint8Array.length', '3');
-shouldBe('Uint8ClampedArray.length', '3');
+shouldBe('Uint16Array.length', '0');
+shouldBe('Uint32Array.length', '0');
+shouldBe('Uint8Array.length', '0');
+shouldBe('Uint8ClampedArray.length', '0');
 shouldBe('VTTCue.length', '3');
 shouldBe('WebGLContextEvent.length', '1');
 shouldBe('WebKitAnimationEvent.length', '1');

Modified: trunk/LayoutTests/platform/efl/js/dom/constructor-length-expected.txt (202671 => 202672)


--- trunk/LayoutTests/platform/efl/js/dom/constructor-length-expected.txt	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/platform/efl/js/dom/constructor-length-expected.txt	2016-06-30 05:10:01 UTC (rev 202672)
@@ -13,18 +13,18 @@
 PASS CustomEvent.length is 1
 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData
 PASS DOMParser.length is 0
-PASS DataView.length is 3
+PASS DataView.length is 0
 PASS ErrorEvent.length is 1
 PASS Event.length is 1
 PASS EventSource.length is 1
-PASS Float32Array.length is 3
-PASS Float64Array.length is 3
+PASS Float32Array.length is 0
+PASS Float64Array.length is 0
 PASS FileReader.length is 0
 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync
 PASS HashChangeEvent.length is 1
-PASS Int16Array.length is 3
-PASS Int32Array.length is 3
-PASS Int8Array.length is 3
+PASS Int16Array.length is 0
+PASS Int32Array.length is 0
+PASS Int8Array.length is 0
 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent
 PASS MediaController.length is 0
 PASS MediaStream.length is 0
@@ -39,10 +39,10 @@
 PASS StorageEvent.length is 1
 PASS TextTrackCue.length is 3
 PASS TrackEvent.length is 1
-PASS Uint16Array.length is 3
-PASS Uint32Array.length is 3
-PASS Uint8Array.length is 3
-PASS Uint8ClampedArray.length is 3
+PASS Uint16Array.length is 0
+PASS Uint32Array.length is 0
+PASS Uint8Array.length is 0
+PASS Uint8ClampedArray.length is 0
 PASS VTTCue.length is 3
 PASS WebGLContextEvent.length is 1
 PASS WebKitAnimationEvent.length is 1

Modified: trunk/LayoutTests/platform/gtk/js/dom/constructor-length-expected.txt (202671 => 202672)


--- trunk/LayoutTests/platform/gtk/js/dom/constructor-length-expected.txt	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/platform/gtk/js/dom/constructor-length-expected.txt	2016-06-30 05:10:01 UTC (rev 202672)
@@ -13,18 +13,18 @@
 PASS CustomEvent.length is 1
 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData
 PASS DOMParser.length is 0
-PASS DataView.length is 3
+PASS DataView.length is 0
 PASS ErrorEvent.length is 1
 PASS Event.length is 1
 PASS EventSource.length is 1
-PASS Float32Array.length is 3
-PASS Float64Array.length is 3
+PASS Float32Array.length is 0
+PASS Float64Array.length is 0
 PASS FileReader.length is 0
 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync
 PASS HashChangeEvent.length is 1
-PASS Int16Array.length is 3
-PASS Int32Array.length is 3
-PASS Int8Array.length is 3
+PASS Int16Array.length is 0
+PASS Int32Array.length is 0
+PASS Int8Array.length is 0
 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent
 PASS MediaController.length is 0
 FAIL MediaStream.length should be 0. Threw exception ReferenceError: Can't find variable: MediaStream
@@ -39,10 +39,10 @@
 PASS StorageEvent.length is 1
 PASS TextTrackCue.length is 3
 PASS TrackEvent.length is 1
-PASS Uint16Array.length is 3
-PASS Uint32Array.length is 3
-PASS Uint8Array.length is 3
-PASS Uint8ClampedArray.length is 3
+PASS Uint16Array.length is 0
+PASS Uint32Array.length is 0
+PASS Uint8Array.length is 0
+PASS Uint8ClampedArray.length is 0
 PASS VTTCue.length is 3
 PASS WebGLContextEvent.length is 1
 PASS WebKitAnimationEvent.length is 1

Modified: trunk/LayoutTests/platform/ios-simulator/js/dom/constructor-length-expected.txt (202671 => 202672)


--- trunk/LayoutTests/platform/ios-simulator/js/dom/constructor-length-expected.txt	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/platform/ios-simulator/js/dom/constructor-length-expected.txt	2016-06-30 05:10:01 UTC (rev 202672)
@@ -13,18 +13,18 @@
 PASS CustomEvent.length is 1
 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData
 PASS DOMParser.length is 0
-PASS DataView.length is 3
+PASS DataView.length is 0
 PASS ErrorEvent.length is 1
 PASS Event.length is 1
 PASS EventSource.length is 1
-PASS Float32Array.length is 3
-PASS Float64Array.length is 3
+PASS Float32Array.length is 0
+PASS Float64Array.length is 0
 PASS FileReader.length is 0
 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync
 PASS HashChangeEvent.length is 1
-PASS Int16Array.length is 3
-PASS Int32Array.length is 3
-PASS Int8Array.length is 3
+PASS Int16Array.length is 0
+PASS Int32Array.length is 0
+PASS Int8Array.length is 0
 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent
 PASS MediaController.length is 0
 PASS MediaStream.length is 0
@@ -39,10 +39,10 @@
 PASS StorageEvent.length is 1
 PASS TextTrackCue.length is 3
 PASS TrackEvent.length is 1
-PASS Uint16Array.length is 3
-PASS Uint32Array.length is 3
-PASS Uint8Array.length is 3
-PASS Uint8ClampedArray.length is 3
+PASS Uint16Array.length is 0
+PASS Uint32Array.length is 0
+PASS Uint8Array.length is 0
+PASS Uint8ClampedArray.length is 0
 PASS VTTCue.length is 3
 PASS WebGLContextEvent.length is 1
 PASS WebKitAnimationEvent.length is 1

Modified: trunk/LayoutTests/platform/mac/js/dom/constructor-length-expected.txt (202671 => 202672)


--- trunk/LayoutTests/platform/mac/js/dom/constructor-length-expected.txt	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/platform/mac/js/dom/constructor-length-expected.txt	2016-06-30 05:10:01 UTC (rev 202672)
@@ -13,18 +13,18 @@
 PASS CustomEvent.length is 1
 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData
 PASS DOMParser.length is 0
-FAIL DataView.length should be 3. Was 0.
+PASS DataView.length is 0
 PASS ErrorEvent.length is 1
 PASS Event.length is 1
 PASS EventSource.length is 1
-FAIL Float32Array.length should be 3. Was 0.
-FAIL Float64Array.length should be 3. Was 0.
+PASS Float32Array.length is 0
+PASS Float64Array.length is 0
 PASS FileReader.length is 0
 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync
 PASS HashChangeEvent.length is 1
-FAIL Int16Array.length should be 3. Was 0.
-FAIL Int32Array.length should be 3. Was 0.
-FAIL Int8Array.length should be 3. Was 0.
+PASS Int16Array.length is 0
+PASS Int32Array.length is 0
+PASS Int8Array.length is 0
 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent
 PASS MediaController.length is 0
 PASS MediaStream.length is 0
@@ -39,10 +39,10 @@
 PASS StorageEvent.length is 1
 PASS TextTrackCue.length is 3
 PASS TrackEvent.length is 1
-FAIL Uint16Array.length should be 3. Was 0.
-FAIL Uint32Array.length should be 3. Was 0.
-FAIL Uint8Array.length should be 3. Was 0.
-FAIL Uint8ClampedArray.length should be 3. Was 0.
+PASS Uint16Array.length is 0
+PASS Uint32Array.length is 0
+PASS Uint8Array.length is 0
+PASS Uint8ClampedArray.length is 0
 PASS VTTCue.length is 3
 PASS WebGLContextEvent.length is 1
 PASS WebKitAnimationEvent.length is 1

Modified: trunk/LayoutTests/platform/win/js/dom/constructor-length-expected.txt (202671 => 202672)


--- trunk/LayoutTests/platform/win/js/dom/constructor-length-expected.txt	2016-06-30 04:49:26 UTC (rev 202671)
+++ trunk/LayoutTests/platform/win/js/dom/constructor-length-expected.txt	2016-06-30 05:10:01 UTC (rev 202672)
@@ -13,18 +13,18 @@
 PASS CustomEvent.length is 1
 FAIL DOMFormData.length should be 0. Threw exception ReferenceError: Can't find variable: DOMFormData
 PASS DOMParser.length is 0
-PASS DataView.length is 3
+PASS DataView.length is 0
 PASS ErrorEvent.length is 1
 PASS Event.length is 1
 PASS EventSource.length is 1
-PASS Float32Array.length is 3
-PASS Float64Array.length is 3
+PASS Float32Array.length is 0
+PASS Float64Array.length is 0
 PASS FileReader.length is 0
 FAIL FileReaderSync.length should be 0. Threw exception ReferenceError: Can't find variable: FileReaderSync
 PASS HashChangeEvent.length is 1
-PASS Int16Array.length is 3
-PASS Int32Array.length is 3
-PASS Int8Array.length is 3
+PASS Int16Array.length is 0
+PASS Int32Array.length is 0
+PASS Int8Array.length is 0
 FAIL Intent.length should be 3. Threw exception ReferenceError: Can't find variable: Intent
 PASS MediaController.length is 0
 FAIL MediaStream.length should be 0. Threw exception ReferenceError: Can't find variable: MediaStream
@@ -39,10 +39,10 @@
 PASS StorageEvent.length is 1
 PASS TextTrackCue.length is 3
 PASS TrackEvent.length is 1
-PASS Uint16Array.length is 3
-PASS Uint32Array.length is 3
-PASS Uint8Array.length is 3
-PASS Uint8ClampedArray.length is 3
+PASS Uint16Array.length is 0
+PASS Uint32Array.length is 0
+PASS Uint8Array.length is 0
+PASS Uint8ClampedArray.length is 0
 PASS VTTCue.length is 3
 FAIL WebGLContextEvent.length should be 1. Threw exception ReferenceError: Can't find variable: WebGLContextEvent
 PASS WebKitAnimationEvent.length is 1
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to