Bug 32822 - WebCore::ApplyStyleCommand::removeInlineStyle ReadAV@NULL (18fa82a60d48c7965db66b916a546328)
Summary: WebCore::ApplyStyleCommand::removeInlineStyle ReadAV@NULL (18fa82a60d48c7965d...
Status: RESOLVED DUPLICATE of bug 32823
Alias: None
Product: WebKit
Classification: Unclassified
Component: HTML Editing (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows Vista
: P2 Normal
Assignee: Nobody
URL: http://skypher.com/SkyLined/Repro/Web...
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-21 06:52 PST by Berend-Jan Wever
Modified: 2009-12-31 02:25 PST (History)
3 users (show)

See Also:


Attachments
Repro (357 bytes, text/html)
2009-12-21 06:52 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 2009-12-21 06:52:03 PST
Created attachment 45326 [details]
Repro

Id:          WebCore::ApplyStyleCommand::removeInlineStyle ReadAV@NULL (18fa82a60d48c7965db66b916a546328)
Description: Attempt to read from NULL pointer in WebCore::ApplyStyleCommand::removeInlineStyle
Stack:
  WebCore::ApplyStyleCommand::removeInlineStyle
  WebCore::ApplyStyleCommand::applyInlineStyle
  WebCore::ApplyStyleCommand::doApply
  WebCore::EditCommand::apply
  WebCore::applyCommand
  WebCore::Editor::applyStyle
  WebCore::executeApplyStyle
  WebCore::executeForeColor
  WebCore::Editor::Command::execute
  WebCore::Document::execCommand
  WebCore::DocumentInternal::execCommandCallback
Repro:
<BODY></BODY>
<SCRIPT>
  document.designMode="on";
  document.execCommand("selectall");
  document.execCommand("InsertHorizontalRule");
  document.execCommand("SelectAll");
  document.execCommand("ForwardDelete");
  document.designMode="off";
  document.execCommand("undo");
  document.designMode="on";
  document.execCommand("ForeColor",false,3);
</SCRIPT>
Comment 1 Berend-Jan Wever 2009-12-21 06:53:38 PST
Online repro
Comment 2 Mike Moretti 2009-12-30 10:18:25 PST
This bug is a dup of 32823; it's the "undo" in designMode off that causes the problem.
Comment 3 Berend-Jan Wever 2009-12-31 02:25:30 PST

*** This bug has been marked as a duplicate of bug 32823 ***