[Webkit-unassigned] [Bug 37290] New: REGRESSION (r55823): database callbacks happen in an isolate world

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Apr 8 14:02:05 PDT 2010


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

           Summary: REGRESSION (r55823): database callbacks happen in an
                    isolate world
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Mac OS X 10.5
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: ggaren at apple.com
                CC: dumi at chromium.org


http://trac.webkit.org/changeset/55823 changed database callbacks in JSC,
creating a new isolated world for each callback. This seems clearly wrong. A
callback should just reuse the world it was created with.

This:
    , m_isolatedWorld(DOMWrapperWorld::create(globalObject->globalData(),
true))
should be this:
    , m_isolatedWorld(globalObject->world())

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



More information about the webkit-unassigned mailing list