[Webkit-unassigned] [Bug 26402] New: Accessing attributes of an object created with "document.implementation.createDocumentType" causes NULL pointers

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 15 03:56:39 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=26402

           Summary: Accessing attributes of an object created with
                    "document.implementation.createDocumentType" causes NULL
                    pointers
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows Vista
            Status: NEW
          Keywords: GoogleBug
          Severity: Normal
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: skylined at chromium.org
                CC: eric at webkit.org


Accessing properties/calling methods of an object created with
"document.implementation.createDocumentType" causes NULL pointer exceptions.

Repro:
<SCRIPT>
  o = document.implementation.createDocumentType('x');
  for (i in o) {
    try { o[i]; } catch (e) {}
    try { o[i](); } catch (e) {}
  }
</SCRIPT>


-- 
Configure bugmail: https://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