[Webkit-unassigned] [Bug 74843] New: Editing OOM/NULL ptr

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Dec 19 00:28:23 PST 2011


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

           Summary: Editing OOM/NULL ptr
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows Vista
            Status: NEW
          Severity: Normal
          Priority: P1
         Component: HTML Editing
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: skylined at chromium.org
                CC: rniwa at webkit.org


Created an attachment (id=119830)
 --> (https://bugs.webkit.org/attachment.cgi?id=119830&action=review)
Repro

Chromium: http://code.google.com/p/chromium/issues/detail?id=108027
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <style>
      * {
       -webkit-user-modify: read-write;
      }
    </style>
    <script>
      window.onload = function(){
        document.execCommand("SelectAll")
        document.execCommand("Indent");
        document.execCommand("outdent");
        document.execCommand("Delete", false);
      };
    </script>
  </head>
  <frameset>
    <frame/>
  </frameset>
</html>

This causes OOM on stable and a NULL ptr in debug builds.

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