[Webkit-unassigned] [Bug 26333] New: alert during a dragenter event handler will crash the renderer

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jun 11 14:58:11 PDT 2009


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

           Summary: alert during a dragenter event handler will crash the
                    renderer
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
               URL: http://nigel.tao.googlepages.com/how-to-dos-your-own-
                    browser.html
        OS/Version: Windows Vista
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebCore Misc.
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: victorw at chromium.org


The steps to reproduce the problem:
1. Go to the test URL above.
2. Drag the image.
3. Watch the renderer crash.

The crux of the page is this:
function doOnLoad() {
  var e = document.documentElement;
  var f = function() {
    alert('You is pwned.');
  };

  if (e.addEventListener) {
    e.addEventListener('dragenter', f, false);
  } else {
    e.attachEvent('ondragenter', f);
  }
}


-- 
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