Search and Top Navigation
#7056 closed bug (worksforme)
Opened March 03, 2011 03:55AM UTC
Closed September 09, 2011 11:43AM UTC
IE8 freezed when double click in an iframe which has two or more dialog
| Reported by: | csumck | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.9.0 |
| Component: | ui.dialog | Version: | 1.8.10 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
to see this problem , you should have two pages. one is the container page, the other one is iframe page.
The HTML for container page:
<html><body> <iframe src="./iframe.htm" id="main" name="main" width="100%" frameborder="0" scrolling="yes" style="overflow-x:no"></iframe> </body></html>
The Html For iframe page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" href="css/cupertino/jquery-ui-1.8.10.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.10.custom.min.js"></script>
<script>
$(document).ready(
function()
{
$('#dlg').dialog();
$('#dlg2').dialog();
}
);
</script>
<body>
<div id="dlg" title="test">
<p>content for dlg</p>
</div>
<div id="dlg2" title="test">
<p>content for dlg2</p>
</div>
</body>
</html>
View the container page in IE8, then double click the empty area of iframe page, IE8 freezed....
Attachments (0)
Change History (1)
Changed September 09, 2011 11:43AM UTC by comment:1
| resolution: | → worksforme |
|---|---|
| status: | new → closed |
Works fine for me.