I have found a test case where I can reproduce a crash in the editor. The crash involves dragging a element in the editor and dropping it under a custom element (XBL). So I don't know if the bug report should be made against the editor or against XBL. Because the problem only occurs with a element that has an XBL binding.

Here are the 2 files that you need to reproduce the mozilla crash. Save these 2 files in the same directory, load the custom.html file in mozilla. Then drag the img element below the blue line.

////////////// custom.html //////////////
<html>
<head>
<style type="text/css">
  my\:custom {
  -moz-binding: url('custom.xml#custom');
}
</style>
</head>
<body onload="document.designMode='on'">
Drag Image below<img><br><my:custom></my:custom>
</body>
</html>


////////////// custom.xml //////////////
<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl";
          xmlns:html="http://www.w3.org/1999/xhtml";>
  <binding id="custom">
    <content>
      <html:div>
        <html:span
          style="border-bottom: 1px solid blue">blue line.
        </html:span>
      </html:div>
    </content>
  </binding>
</bindings>


How should I submit this bug to mozilla? Is there a good way to gather crash information and post it with the bug report?
_______________________________________________
dev-tech-editor mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-tech-editor

Reply via email to