summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/XSSFilter/large-post-many-inline-scripts-and-events.html
blob: 9eaa93fba9302e5cda85cc333c0dccc3dc71d6bb (plain)
1
2
3
4
5
6
7
8
9
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>