This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 51930
Collapse All | Expand All

(-)AppletSupport.java (-1 / +1 lines)
Lines 193-199 Link Here
193
                if (workAround6193279) {
193
                if (workAround6193279) {
194
                    File f = FileUtil.toFile(html);
194
                    File f = FileUtil.toFile(html);
195
                    try {
195
                    try {
196
                        url = new URL ("file",null,f.getAbsolutePath());
196
                        url = new URL ("file",null,f.getAbsolutePath().replace("\\", "/"));
197
                    } catch (MalformedURLException e) {
197
                    } catch (MalformedURLException e) {
198
                        ErrorManager.getDefault().notify(e);
198
                        ErrorManager.getDefault().notify(e);
199
                    }
199
                    }

Return to bug 51930