| Index: chrome/test/data/click_modifier/window_open.html
|
| diff --git a/chrome/test/data/click_modifier/window_open.html b/chrome/test/data/click_modifier/window_open.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f70ddfdbeb5f475f7662638b6bcf620d0478b6e0
|
| --- /dev/null
|
| +++ b/chrome/test/data/click_modifier/window_open.html
|
| @@ -0,0 +1,15 @@
|
| +<html>
|
| +<head>
|
| +<title>First window</title>
|
| +<script>
|
| +function test() {
|
| + window.open("data:text/html,<title>New window!</title>" +
|
| + "this is the new window");
|
| +}
|
| +</script>
|
| +</head>
|
| +<body onclick="test()">
|
| +click modifier test page
|
| +</body>
|
| +</html>
|
| +
|
|
|