Bug 75853

Summary: NULL ptr in WebCore::HTMLTextDecorationEquivalent::propertyExistsInStyle
Product: WebKit Reporter: Berend-Jan Wever <skylined>
Component: HTML EditingAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: brunoabinader, rniwa
Priority: P1    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Windows Vista   
Attachments:
Description Flags
Repro none

Description Berend-Jan Wever 2012-01-09 06:43:31 PST
Created attachment 121663 [details]
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>
Comment 1 Bruno Abinader 2013-08-30 08:43:14 PDT
From Chromium issue: ClusterFuzz has detected this issue as fixed in range 119736:119777. Thus marking bug as fixed.