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

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

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « LayoutTests/fast/js/function-bind.html ('k') | LayoutTests/fast/js/function-name.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="resources/js-test-pre.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 functions."); 8 description("This tests the length property of functions.");
9 9
10 shouldBe('window.confirm.length', '0'); 10 shouldBe('window.confirm.length', '0');
11 shouldBe('window.open.length', '2'); 11 shouldBe('window.open.length', '2');
12 shouldBe('window.showModalDialog.length', '1'); 12 shouldBe('window.showModalDialog.length', '1');
13 shouldBe('window.setTimeout.length', '1'); 13 shouldBe('window.setTimeout.length', '1');
14 shouldBe('window.clearTimeout.length', '0'); 14 shouldBe('window.clearTimeout.length', '0');
(...skipping 23 matching lines...) Expand all
38 shouldBe('Math.min.length', '2'); 38 shouldBe('Math.min.length', '2');
39 shouldBe('Function.prototype.apply.length', '2'); 39 shouldBe('Function.prototype.apply.length', '2');
40 shouldBe('Function.prototype.call.length', '1'); 40 shouldBe('Function.prototype.call.length', '1');
41 shouldBe('String.prototype.split.length', '2'); 41 shouldBe('String.prototype.split.length', '2');
42 shouldBe('String.prototype.substring.length', '2'); 42 shouldBe('String.prototype.substring.length', '2');
43 43
44 44
45 </script> 45 </script>
46 </body> 46 </body>
47 </html> 47 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/js/function-bind.html ('k') | LayoutTests/fast/js/function-name.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698