| Summary: | setUrl() call navigates to about:blank prior to real url breaks IEWebHistory | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | B. Chen <cbeth> |
| Component: | SWT | Assignee: | Grant Gayed <grant_gayed> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | mukund, peina, raji, Silenio_Quarti |
| Version: | 3.5 | Flags: | Silenio_Quarti:
review+
|
| Target Milestone: | 3.6.2 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed > 20101018 Grant, thanks for fixing this bug ! Could you please port this fix into Eclipse 3.6.2 stream? SWT 3.6.2 will be the version used in our product. Since it's a regression it can be considered for 3.6.2. Adding Silenio for +1. released to 3.6.2 stream > 20101021 |
Build Identifier: Eclipse 3.6.1 setUrl() API navigates to about:blank first before goes to real url. This breaks WebHistory if application calls setUrl("about:blank") first follow by another call setUrl("another url"). This only failed on IE based WebBrowser. Propose fix: IE.java setUrl() Change if (_getUrl().length() == 0 ) { to if (_getUrl().length() == 0 && ABOUT_BLANK.equalsIgnoreCase(url)) { Reproducible: Always