Bug 75853 - NULL ptr in WebCore::HTMLTextDecorationEquivalent::propertyExistsInStyle
Summary: NULL ptr in WebCore::HTMLTextDecorationEquivalent::propertyExistsInStyle
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: HTML Editing (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows Vista
: P1 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-01-09 06:43 PST by Berend-Jan Wever
Modified: 2013-08-30 08:43 PDT (History)
2 users (show)

See Also:


Attachments
Repro (686 bytes, application/xhtml+xml)
2012-01-09 06:43 PST, Berend-Jan Wever
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
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.