Chromium Code Reviews| Index: chrome/test/data/login/deframe.html |
| diff --git a/chrome/test/data/login/deframe.html b/chrome/test/data/login/deframe.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2bf48fba8e84f347fd2ee20e65bc1baed5c14d4f |
| --- /dev/null |
| +++ b/chrome/test/data/login/deframe.html |
| @@ -0,0 +1,14 @@ |
| +<html> |
| +<head> |
| +<script> |
| +function deframe(){ |
| + if (top.location != self.location) |
| + top.location.href = self.location; |
| +} |
| +</script> |
| +</head> |
| + |
| +<body onload="deframe();""> |
| +This page will attempt to break out iframe. |
| +</body> |
| +</html> |