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

Side by Side Diff: webkit/data/layout_tests/chrome/fast/dom/function_arguments.html

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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
(Empty)
1 <html>
2
3 <body>
4 <script>
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
7
8 function foo(name, value) {
9 var argc = foo.arguments.length;
10 if (argc == "5")
11 {
12 document.write("<b> RESULT: </b> Test PASSED");
13 }
14 else{
15 document.write("<b> RESULT: </b> Test FAILED");
16 }
17 }
18 </script>
19 <p> <b>Test purpose:</b> This tests if [Function.]arguments works in Chrome. See bug# 805211 for more details. </p>
20 <div id="abc"></div>
21 <script>
22
23 foo("From", "%E5%8C%97%E4%BA%AC", 360, '/', "kooxoo.com");
24 </script>
25 </body>
26
27 </HTML>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698