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

Unified Diff: LayoutTests/http/tests/perf/resources/page-with-large-script.cgi

Issue 500363002: Test time complexity for page with large inlined script. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/http/tests/perf/large-inlined-script-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/perf/resources/page-with-large-script.cgi
diff --git a/LayoutTests/http/tests/perf/resources/page-with-large-script.cgi b/LayoutTests/http/tests/perf/resources/page-with-large-script.cgi
new file mode 100755
index 0000000000000000000000000000000000000000..09cb40925219768bd1741bcf1357a677abcd9994
--- /dev/null
+++ b/LayoutTests/http/tests/perf/resources/page-with-large-script.cgi
@@ -0,0 +1,27 @@
+#!/usr/bin/perl -wT
+use strict;
+
+my (@out, $i, $n, $line);
+
+push(@out, "Content-type: text/html\n");
+push(@out, "\n");
+push(@out, "<html>\n");
+push(@out, " <head>\n");
+push(@out, " <script>\n");
+
+push(@out, "function foo() {\n");
+push(@out, " var q;\n");
+$n = int($ENV{'QUERY_STRING'});
+$line = " q = 0; q = 1; q = 2; q = 3; q = 4; q = 5; q = 6; q = 7; q = 8; q = 9;\n";
+for ($i = 0; $i < $n; $i++) {
+ push(@out, $line);
+}
+push(@out, "}\n");
+
+push(@out, " </script>\n");
+push(@out, " </head>\n");
+push(@out, " <body onload='parent._iframeLoaded();'>\n");
+push(@out, "Bar\n");
+push(@out, " </body>\n");
+push(@out, "</html>\n");
+print join("", @out);
« no previous file with comments | « LayoutTests/http/tests/perf/large-inlined-script-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698