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

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

Issue 48903019: Delete js-test-post.js. (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-names.html ('k') | LayoutTests/fast/js/function-redefinition.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 <script> 4 <script>
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 } 8 }
9 </script> 9 </script>
10 </head> 10 </head>
(...skipping 14 matching lines...) Expand all
25 MyClass.func = new Function("return this"); 25 MyClass.func = new Function("return this");
26 26
27 MyClass.func.prototype = 27 MyClass.func.prototype =
28 { 28 {
29 internalFunc: function() { } 29 internalFunc: function() { }
30 } 30 }
31 31
32 var actual = "" + MyClass.runTest(); 32 var actual = "" + MyClass.runTest();
33 shouldBe("actual", "'function () { }'"); 33 shouldBe("actual", "'function () { }'");
34 </script> 34 </script>
35 <script src="../js/resources/js-test-post.js"></script>
36 <script> 35 <script>
37 if (window.testRunner) 36 if (window.testRunner)
38 testRunner.notifyDone(); 37 testRunner.notifyDone();
39 </script> 38 </script>
40 </body> 39 </body>
41 </html> 40 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/js/function-names.html ('k') | LayoutTests/fast/js/function-redefinition.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698