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

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

Issue 521883003: Remove WebKitPoint (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 shouldBe('TrackEvent.length', '1'); 43 shouldBe('TrackEvent.length', '1');
44 shouldBe('Uint16Array.length', '3'); 44 shouldBe('Uint16Array.length', '3');
45 shouldBe('Uint32Array.length', '3'); 45 shouldBe('Uint32Array.length', '3');
46 shouldBe('Uint8Array.length', '3'); 46 shouldBe('Uint8Array.length', '3');
47 shouldBe('Uint8ClampedArray.length', '3'); 47 shouldBe('Uint8ClampedArray.length', '3');
48 shouldBe('VTTCue.length', '3'); 48 shouldBe('VTTCue.length', '3');
49 shouldBe('WebGLContextEvent.length', '1'); 49 shouldBe('WebGLContextEvent.length', '1');
50 shouldBe('WebKitAnimationEvent.length', '1'); 50 shouldBe('WebKitAnimationEvent.length', '1');
51 shouldBe('WebKitCSSMatrix.length', '0'); 51 shouldBe('WebKitCSSMatrix.length', '0');
52 shouldBe('WebKitMutationObserver.length', '1'); 52 shouldBe('WebKitMutationObserver.length', '1');
53 shouldBe('WebKitPoint.length', '0');
54 shouldBe('WebKitTransitionEvent.length', '1'); 53 shouldBe('WebKitTransitionEvent.length', '1');
55 shouldBe('WebSocket.length', '1'); 54 shouldBe('WebSocket.length', '1');
56 shouldBe('Worker.length', '1'); 55 shouldBe('Worker.length', '1');
57 shouldBe('URL.length', '1'); 56 shouldBe('URL.length', '1');
58 shouldBe('XMLHttpRequest.length', '0'); 57 shouldBe('XMLHttpRequest.length', '0');
59 shouldBe('XMLSerializer.length', '0'); 58 shouldBe('XMLSerializer.length', '0');
60 shouldBe('XPathEvaluator.length', '0'); 59 shouldBe('XPathEvaluator.length', '0');
61 shouldBe('XSLTProcessor.length', '0'); 60 shouldBe('XSLTProcessor.length', '0');
62 61
63 </script> 62 </script>
64 </body> 63 </body>
65 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698