Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: editor/composer/test/chrome.toml
<?xml version="1.0"?>
                 type="text/css"?>
                 type="text/css"?>
<!--
-->
  <p/>
          id="editor"
          type="content"
          primary="true"
          editortype="html"
          style="width: 400px; height: 100px; border: thin solid black"/>
  <p/>
  <pre id="test">
  </pre>
  </body>
  <script class="testbody" type="application/javascript">
  <![CDATA[
  SimpleTest.waitForExplicitFinish();
  function EditorContentListener(aEditor)
  {
    this.init(aEditor);
  }
  EditorContentListener.prototype = {
    init(aEditor)
    {
      this.mEditor = aEditor;
    },
    QueryInterface: ChromeUtils.generateQI(["nsIWebProgressListener",
                                            "nsISupportsWeakReference"]),
    onStateChange(aWebProgress, aRequest, aStateFlags)
    {
      if (aStateFlags & Ci.nsIWebProgressListener.STATE_STOP)
      {
        var editor = this.mEditor.getEditor(this.mEditor.contentWindow);
        if (editor) {
          // Should not throw
          var threw = false;
          try {
            this.mEditor.contentDocument.execCommand("bold", false, null);
          } catch (e) {
            threw = true;
          }
          ok(!threw, "The execCommand API should work on <xul:editor>");
          progress.removeProgressListener(progressListener, Ci.nsIWebProgress.NOTIFY_ALL);
          SimpleTest.finish();
        }
      }
    },
    onProgressChange()
    {
  },
  onLocationChange()
    {
    },
    onStatusChange()
    {
    },
    onSecurityChange()
    {
    },
    onContentBlockingEvent()
    {
    },
    mEditor: null
  };
  var progress, progressListener;
  function runTest() {
    var newEditorElement = document.getElementById("editor");
    newEditorElement.makeEditable("html", true);
    var docShell = newEditorElement.docShell;
    progress = docShell.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIWebProgress);
    progressListener = new EditorContentListener(newEditorElement);
    progress.addProgressListener(progressListener, Ci.nsIWebProgress.NOTIFY_ALL);
    newEditorElement.setAttribute("src", "data:text/html,");
  }
]]>
</script>
</window>