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

Side by Side Diff: LayoutTests/fast/js/constructor-length.html

Issue 959643002: Remove the overflowchanged event with a runtime flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 description("This tests the length property of constructors."); 8 description("This tests the length property of constructors.");
9 9
10 shouldBe('ArrayBuffer.length', '1'); 10 shouldBe('ArrayBuffer.length', '1');
(...skipping 14 matching lines...) Expand all
25 shouldBe('FileReaderSync.length', '0'); 25 shouldBe('FileReaderSync.length', '0');
26 shouldBe('HashChangeEvent.length', '1'); 26 shouldBe('HashChangeEvent.length', '1');
27 shouldBe('Int16Array.length', '3'); 27 shouldBe('Int16Array.length', '3');
28 shouldBe('Int32Array.length', '3'); 28 shouldBe('Int32Array.length', '3');
29 shouldBe('Int8Array.length', '3'); 29 shouldBe('Int8Array.length', '3');
30 shouldBe('Intent.length', '3'); 30 shouldBe('Intent.length', '3');
31 shouldBe('MediaController.length', '0'); 31 shouldBe('MediaController.length', '0');
32 shouldBe('MediaStream.length', '0'); 32 shouldBe('MediaStream.length', '0');
33 shouldBe('MessageChannel.length', '0'); 33 shouldBe('MessageChannel.length', '0');
34 shouldBe('MessageEvent.length', '1'); 34 shouldBe('MessageEvent.length', '1');
35 shouldBe('OverflowEvent.length', '1');
36 shouldBe('PageTransitionEvent.length', '1'); 35 shouldBe('PageTransitionEvent.length', '1');
37 shouldBe('PeerConnection.length', '2'); 36 shouldBe('PeerConnection.length', '2');
38 shouldBe('PopStateEvent.length', '1'); 37 shouldBe('PopStateEvent.length', '1');
39 shouldBe('ProgressEvent.length', '1'); 38 shouldBe('ProgressEvent.length', '1');
40 shouldBe('ShadowRoot.length', '0'); 39 shouldBe('ShadowRoot.length', '0');
41 shouldBe('SharedWorker.length', '1'); 40 shouldBe('SharedWorker.length', '1');
42 shouldBe('StorageEvent.length', '1'); 41 shouldBe('StorageEvent.length', '1');
43 shouldBe('TrackEvent.length', '1'); 42 shouldBe('TrackEvent.length', '1');
44 shouldBe('Uint16Array.length', '3'); 43 shouldBe('Uint16Array.length', '3');
45 shouldBe('Uint32Array.length', '3'); 44 shouldBe('Uint32Array.length', '3');
46 shouldBe('Uint8Array.length', '3'); 45 shouldBe('Uint8Array.length', '3');
47 shouldBe('Uint8ClampedArray.length', '3'); 46 shouldBe('Uint8ClampedArray.length', '3');
48 shouldBe('VTTCue.length', '3'); 47 shouldBe('VTTCue.length', '3');
49 shouldBe('WebGLContextEvent.length', '1'); 48 shouldBe('WebGLContextEvent.length', '1');
50 shouldBe('WebKitAnimationEvent.length', '1'); 49 shouldBe('WebKitAnimationEvent.length', '1');
51 shouldBe('WebKitCSSMatrix.length', '0'); 50 shouldBe('WebKitCSSMatrix.length', '0');
52 shouldBe('WebKitMutationObserver.length', '1'); 51 shouldBe('WebKitMutationObserver.length', '1');
53 shouldBe('WebKitTransitionEvent.length', '1'); 52 shouldBe('WebKitTransitionEvent.length', '1');
54 shouldBe('WebSocket.length', '1'); 53 shouldBe('WebSocket.length', '1');
55 shouldBe('Worker.length', '1'); 54 shouldBe('Worker.length', '1');
56 shouldBe('URL.length', '1'); 55 shouldBe('URL.length', '1');
57 shouldBe('XMLHttpRequest.length', '0'); 56 shouldBe('XMLHttpRequest.length', '0');
58 shouldBe('XMLSerializer.length', '0'); 57 shouldBe('XMLSerializer.length', '0');
59 shouldBe('XPathEvaluator.length', '0'); 58 shouldBe('XPathEvaluator.length', '0');
60 shouldBe('XSLTProcessor.length', '0'); 59 shouldBe('XSLTProcessor.length', '0');
61 60
62 </script> 61 </script>
63 </body> 62 </body>
64 </html> 63 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698