| Index: chrome/test/data/window.open.blank.html
|
| diff --git a/chrome/test/data/window.open.blank.html b/chrome/test/data/window.open.blank.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2ce25318817ff15e500fa2488dc36168dec1b45f
|
| --- /dev/null
|
| +++ b/chrome/test/data/window.open.blank.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| + <title>88129</title>
|
| + <script>
|
| + function openWindow1() {
|
| + var name = window.open('http://www.example.com', 'blank').name;
|
| + window.domAutomationController.send(name);
|
| + }
|
| +
|
| + function openWindow2() {
|
| + var name = window.open('http://www.example.com', '_blank').name;
|
| + window.domAutomationController.send(name);
|
| + }
|
| + </script>
|
| +</head>
|
| +<body>
|
| + <h1>88129</h1>
|
| +</body>
|
| +</html>
|
|
|