Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <title>First window</title> | |
| 4 <script> | |
| 5 function test() { | |
| 6 window.open("data:text/html,<title>New window!</title>" + | |
| 7 "this is the new window"); | |
| 8 } | |
| 9 </script> | |
| 10 </head> | |
| 11 <body onclick="test()"> | |
| 12 click modifier test page | |
| 13 </body> | |
| 14 </html> | |
| 15 | |
| OLD | NEW |