summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug607584.xul
blob: fb16cee838009b1d00a2a17b2c6006cca385ba85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin"
                 type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
                 type="text/css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=607584
-->
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="Mozilla Bug 607584" onload="runTest();">
  <script type="application/javascript"
    src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"/>
  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>

  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=607584"
     target="_blank">Mozilla Bug 607584</a>
  <p/>
  <editor xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
          id="editor"
          type="content-primary"
          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 : function(aEditor)
      {
        this.mEditor = aEditor;
      },
  
    QueryInterface : function(aIID)
      {
        if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
            aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
            aIID.equals(Components.interfaces.nsISupports))
          return this;
        throw Components.results.NS_NOINTERFACE;
      },
  
    onStateChange : function(aWebProgress, aRequest, aStateFlags, aStatus)
    {
        if (aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP)
        {
          var editor = this.mEditor.getEditor(this.mEditor.contentWindow);
          if (editor) {
              this.mEditor.focus();
              editor instanceof Components.interfaces.nsIHTMLEditor;
              editor.returnInParagraphCreatesNewParagraph = true;
              editor.insertHTML("<p id='foo'>this is a paragraph carrying id 'foo'</p>");
              var p = editor.document.getElementById('foo')
              editor.beginningOfDocument();
              sendKey("return");
              var firstP = p.parentNode.firstElementChild;
              var lastP  = p.parentNode.lastElementChild;
              var isOk = firstP.nodeName.toLowerCase() == "p" &&
	                       firstP.id == "foo" &&
	                       lastP.id == "";
              ok(isOk, "CR in a paragraph with an ID should not create two paragraphs of same ID");
              progress.removeProgressListener(this);
              SimpleTest.finish();
          }
        }
  
    },
  
  
    onProgressChange : function(aWebProgress, aRequest,
                                aCurSelfProgress, aMaxSelfProgress,
                                aCurTotalProgress, aMaxTotalProgress)
      {
      },
  
    onLocationChange : function(aWebProgress, aRequest, aLocation, aFlags)
      {
      },
  
    onStatusChange : function(aWebProgress, aRequest, aStatus, aMessage)
      {
      },
  
    onSecurityChange : function(aWebProgress, aRequest, aState)
      {
      },
  
      mEditor: null
  };

  var progress, progressListener;

  function runTest() {
    var newEditorElement = document.getElementById("editor");
    newEditorElement.makeEditable("html", true);
    var docShell = newEditorElement.boxObject.docShell;
    progress = docShell.QueryInterface(Components.interfaces.nsIInterfaceRequestor).getInterface(Components.interfaces.nsIWebProgress);
    progressListener = new EditorContentListener(newEditorElement);
    progress.addProgressListener(progressListener, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
    newEditorElement.setAttribute("src", "data:text/html,");
  }
]]>
</script>
</window>