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

Side by Side Diff: LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase.html

Issue 187103002: id of iframe incorrectly sets window name (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add back no-referrer-subframe.html Created 6 years, 9 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../resources/cross-frame-access.js"></script> 3 <script src="../resources/cross-frame-access.js"></script>
4 </head> 4 </head>
5 <body> 5 <body>
6 <p>This tests that the main frame can't access the contents of an iframe tha t contains a data: URL loaded page using the 6 <p>This tests that the main frame can't access the contents of an iframe tha t contains a data: URL loaded page using the
7 uppercased variant DATA:</p> 7 uppercased variant DATA:</p>
8 <iframe id="aFrame"></iframe> 8 <iframe id="aFrame" name="aFrame"></iframe>
9 <pre id="console"></pre> 9 <pre id="console"></pre>
10 <script> 10 <script>
11 var url = "DATA:text/html,<html><scr" + "ipt>onload = function() { paren t.postMessage(\'LOADED\', \'*\'); } </scr" + "ipt><body><p id=\'accessMe\'></p>< p>Inner iframe.</p></body></html>"; 11 var url = "DATA:text/html,<html><scr" + "ipt>onload = function() { paren t.postMessage(\'LOADED\', \'*\'); } </scr" + "ipt><body><p id=\'accessMe\'></p>< p>Inner iframe.</p></body></html>";
12 var iframeId ="aFrame"; 12 var iframeId ="aFrame";
13 var passMessage = "PASS: Cross frame access to a DATA: URL was denied."; 13 var passMessage = "PASS: Cross frame access to a DATA: URL was denied.";
14 var failMessage = "FAIL: Cross frame access to a DATA: URL was allowed." ; 14 var failMessage = "FAIL: Cross frame access to a DATA: URL was allowed." ;
15 cannotAccessFrame(url, iframeId, passMessage, failMessage); 15 cannotAccessFrame(url, iframeId, passMessage, failMessage);
16 </script> 16 </script>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698