| Index: third_party/WebKit/Source/web/tests/data/iframe_redirect_blocked.html
|
| diff --git a/third_party/WebKit/Source/web/tests/data/iframe_redirect_blocked.html b/third_party/WebKit/Source/web/tests/data/iframe_redirect_blocked.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ba4d88d3bef03e4edc0f2155f6defe98fc2d4047
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/web/tests/data/iframe_redirect_blocked.html
|
| @@ -0,0 +1,13 @@
|
| +<html>
|
| + <head>
|
| + <meta http-equiv="content-security-policy" content="frame-src 'none'">
|
| + </head>
|
| + <body>
|
| + <iframe id='ifr' name='ifr'>
|
| + </iframe>
|
| + <script>
|
| + var ifr = document.getElementById('ifr');
|
| + ifr.contentWindow.document.location = "visible_iframe.html";
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|