[Webkit-unassigned] [Bug 75853] New: NULL ptr in WebCore::HTMLTextDecorationEquivalent::propertyExistsInStyle

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 9 06:43:31 PST 2012


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

           Summary: NULL ptr in
                    WebCore::HTMLTextDecorationEquivalent::propertyExistsI
                    nStyle
           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=121663)
 --> (https://bugs.webkit.org/attachment.cgi?id=121663&action=review)
Repro

Chromium: http://code.google.com/p/chromium/issues/detail?id=109610
Repro:

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <script>
      window.onload = function() {
        document.execCommand("SelectAll");
        document.execCommand("InsertUnorderedList")
        document.execCommand("InsertHorizontalRule");
        document.execCommand("InsertParagraph");
        document.execCommand("strikethrough", false);
        document.execCommand("JustifyNone", false);
        document.execCommand("InsertHorizontalRule", false);
        document.execCommand("JustifyFull");
        document.execCommand("indent");
        document.execCommand("insertunorderedlist");
      }
    </script>
  </head>
  <body contenteditable="true">
  </body>
</html>

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