I'm trying to run this code
String outputFile = "file:///C:/reports/1016.html";
Window.open(outputFile, "Test", "");
Window.open("http://www.bing.com/", "bing", "");
As you can see, outputFile is not a weblink, but a file. Chrome/firefox do not seem to want to open it, they keep opening an about:blank window. I thought I had done it wrong so I added the third line with an actual webaddress which works fine. What am I doing wrong here? can Window.open() not open files?