Bug 288460 - IE + SSL + Closing Dialog causes non-secure elements warning
Summary: IE + SSL + Closing Dialog causes non-secure elements warning
Status: RESOLVED DUPLICATE of bug 285815
Alias: None
Product: RAP
Classification: RT
Component: Releng (show other bugs)
Version: 1.2   Edit
Hardware: PC Windows All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords: needinfo
Depends on:
Blocks:
 
Reported: 2009-09-03 07:58 EDT by Philipp Eichhorn CLA
Modified: 2009-09-03 08:58 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Philipp Eichhorn CLA 2009-09-03 07:58:47 EDT
Environment: SSL in IE6 or newer
             RAP 1.2 R 1425

Just for completeness if somebody runs into it.

Small EntryPoint to reproduce:

public class TestSSLRAP implements IEntryPoint {
	public int createUI() {
		Display display = new Display();
		Shell shell = new Shell(display);
		MessageBox message = new MessageBox(shell);
		message.setMessage("Close");
		message.open();
		shell.open();
		shell.setMaximized(true);
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch()) {
				display.sleep();
			}
		}
		return 0;
	}
}

I think this has something to do with removing DIV elements that reference a background image.

The only solution that worked for me was adjusting the qx-0.7.4 source with the fixes suggested in http://bugzilla.qooxdoo.org/show_bug.cgi?id=890 comment #2 and #4. See provided patch.

I'm not sure if there is an elegant solution for this.
Comment 1 Ivan Furnadjiev CLA 2009-09-03 08:33:12 EDT
Philipp, today we fixed the bug 285815. With the current CVS HEAD I can't reproduce it. Please test it against CVS HEAD and report back the results.
Comment 2 Ivan Furnadjiev CLA 2009-09-03 08:58:40 EDT
Closed as duplicate of bug 285815. Feel free to reopen it if the bug persist.

*** This bug has been marked as a duplicate of bug 285815 ***