| 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..894d5a79787bbbbcc69a59c654b53c67126b6c29
|
| --- /dev/null
|
| +++ b/chrome/test/data/login/deframe.html
|
| @@ -0,0 +1,16 @@
|
| +<html>
|
| +<head>
|
| +<script>
|
| +
|
| +// Attempts to trigger top-frame navigation.
|
| +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>
|
|
|