Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / security / resources / xss-eval2.html
blob462cd58d82be9321ac8e31f786aa4c62c938ac7f
1 <script>
2 document.testExpando = "It's me too!";
4 parent.childEval = eval;
6 parent.childEvalCaller = function(s) {
7 return window.eval(s);
10 parent.childLocalEvalCaller = (function()
12 var e = eval;
13 return function(s) { return e(s); };
14 })();
16 location.href = "http://localhost:8000/security/resources/xss-eval3.html";
17 </script>