[Webkit-unassigned] [Bug 14078] New: appendChild an iFrame silently crashes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 11 17:01:56 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14078

           Summary: appendChild an iFrame silently crashes
           Product: WebKit
           Version: 522+ (nightly)
          Platform: PC
        OS/Version: Windows Server 2003
            Status: UNCONFIRMED
          Severity: Blocker
          Priority: P1
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: bleroy at microsoft.com


Try this page. You should get two alerts, but in Safari 3 beta for Windows you
get only the first one.

<html>
<head>
<script type="text/javascript">
function createFrame() {
   frame = document.createElement('IFRAME');
   frame.id = frame.name = "myFrame";
   frame.src = "empty.htm";
   alert("Creating iframe");
   document.appendChild(frame);
   alert("Created iframe");
}
</script>
</head>
<body onload="createFrame();">
</body>
</html>


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list