summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html
diff options
context:
space:
mode:
Diffstat (limited to 'PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html')
-rw-r--r--PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html b/PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html
new file mode 100644
index 0000000..9eaa93f
--- /dev/null
+++ b/PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html
@@ -0,0 +1,10 @@
+<form action="resources/target-for-large-post-many-inline-scripts-and-events.html" method=POST>
+<input name="a" type="hidden">
+<input type=submit>
+</form>
+<script>
+var val = "";
+for (i = 0; i < 200000; ++i)
+ val += Math.random();
+document.getElementsByName("a")[0].value = val;
+</script>