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

Side by Side Diff: LayoutTests/http/tests/security/xss-DENIED-cross-origin-stack-overflow.html

Issue 1350633002: Merge 202211 "Rethrow cross-site exceptions as security errors" (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2454/
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/http/tests/security/xss-DENIED-cross-origin-stack-overflow-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <div id="console"></div> 2 <div id="console"></div>
3 <script> 3 <script>
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 } 7 }
8 8
9 var iframe = document.body.appendChild(document.createElement("iframe")); 9 var iframe = document.body.appendChild(document.createElement("iframe"));
10 var o = undefined; 10 var o = undefined;
(...skipping 20 matching lines...) Expand all
31 function waitForLoaded() { 31 function waitForLoaded() {
32 try { frames[0].a; } catch(e) { 32 try { frames[0].a; } catch(e) {
33 clearInterval(interval); 33 clearInterval(interval);
34 test(); 34 test();
35 } 35 }
36 } 36 }
37 37
38 var interval = setInterval(waitForLoaded, 1); 38 var interval = setInterval(waitForLoaded, 1);
39 iframe.src = "http://localhost:8000/resources/dummy.html"; 39 iframe.src = "http://localhost:8000/resources/dummy.html";
40 </script> 40 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/security/xss-DENIED-cross-origin-stack-overflow-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698