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

Unified Diff: LayoutTests/fast/js/constructor-length.html

Issue 19230002: Use V8 implementation of TypedArrays and DataView in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased for relanding Created 7 years, 4 months 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
Index: LayoutTests/fast/js/constructor-length.html
diff --git a/LayoutTests/fast/js/constructor-length.html b/LayoutTests/fast/js/constructor-length.html
index 4a7202d86715bde7e70e2ddf3f3c0ab0ead06281..195912f02b97de8e42e4af6d513acdfce814e9cb 100644
--- a/LayoutTests/fast/js/constructor-length.html
+++ b/LayoutTests/fast/js/constructor-length.html
@@ -16,18 +16,18 @@ shouldBe('CloseEvent.length', '1');
shouldBe('CustomEvent.length', '1');
shouldBe('DOMFormData.length', '0');
shouldBe('DOMParser.length', '0');
-shouldBe('DataView.length', '1');
+shouldBe('DataView.length', '3');
shouldBe('ErrorEvent.length', '1');
shouldBe('Event.length', '1');
shouldBe('EventSource.length', '1');
-shouldBe('Float32Array.length', '1');
-shouldBe('Float64Array.length', '1');
+shouldBe('Float32Array.length', '3');
+shouldBe('Float64Array.length', '3');
shouldBe('FileReader.length', '0');
shouldBe('FileReaderSync.length', '0');
shouldBe('HashChangeEvent.length', '1');
-shouldBe('Int16Array.length', '1');
-shouldBe('Int32Array.length', '1');
-shouldBe('Int8Array.length', '1');
+shouldBe('Int16Array.length', '3');
+shouldBe('Int32Array.length', '3');
+shouldBe('Int8Array.length', '3');
shouldBe('Intent.length', '3');
shouldBe('MediaController.length', '0');
shouldBe('MediaStream.length', '0');
@@ -43,10 +43,10 @@ shouldBe('SharedWorker.length', '1');
shouldBe('StorageEvent.length', '1');
shouldBe('TextTrackCue.length', '3');
shouldBe('TrackEvent.length', '1');
-shouldBe('Uint16Array.length', '1');
-shouldBe('Uint32Array.length', '1');
-shouldBe('Uint8Array.length', '1');
-shouldBe('Uint8ClampedArray.length', '1');
+shouldBe('Uint16Array.length', '3');
+shouldBe('Uint32Array.length', '3');
+shouldBe('Uint8Array.length', '3');
+shouldBe('Uint8ClampedArray.length', '3');
shouldBe('WebGLContextEvent.length', '1');
shouldBe('WebKitAnimationEvent.length', '1');
shouldBe('WebKitCSSMatrix.length', '0');

Powered by Google App Engine
This is Rietveld 408576698