summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug468353.html
blob: 179c41cdc7ed9421ed67cdfa4ca31a9f1555a8f4 (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
116
117
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=468353
-->
<head>
  <title>Test for Bug 468353</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=468353">Mozilla Bug 468353</a>
<p id="display"></p>
<div id="content">
  <iframe></iframe>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

var styleSheets = null;

function checkStylesheets() {
  // Evidently RemoveStyleSheet is the only method in nsIEditorStyleSheets
  // that would throw. RemoveOverrideStyleSheet returns NS_OK even if the
  // sheet is not there
  var removed = 0;
  try
  {
    styleSheets.removeStyleSheet("resource://gre/res/designmode.css");
    removed++;
  }
  catch (ex) { }

  try {
    styleSheets.removeStyleSheet("resource://gre/res/contenteditable.css");
    removed++;
  }
  catch (ex) { }

  is(removed, 0, "Should have thrown if stylesheet was not there");
}

function runTest() {
  const Ci = SpecialPowers.Ci;

  /** Found while fixing bug 440614 **/
  var editframe = window.frames[0];
  var editdoc = editframe.document;
  var editor = null;
  editdoc.write('');
  editdoc.close();

  editdoc.designMode='on';

  // Hold the reference to the editor
  editor = SpecialPowers.wrap(editframe)
                        .QueryInterface(Ci.nsIInterfaceRequestor)
                        .getInterface(Ci.nsIWebNavigation)
                        .QueryInterface(Ci.nsIInterfaceRequestor)
                        .getInterface(Ci.nsIEditingSession)
                        .getEditorForWindow(editframe);

  styleSheets = editor.QueryInterface(Ci.nsIEditorStyleSheets);

  editdoc.designMode='off';
  
  checkStylesheets();
  
  // Let go
  editor = null;
  styleSheets = null;
  
  editdoc.body.contentEditable = true;
  
  // Hold the reference to the editor
  editor = SpecialPowers.wrap(editframe)
                        .QueryInterface(Ci.nsIInterfaceRequestor)
                        .getInterface(Ci.nsIWebNavigation)
                        .QueryInterface(Ci.nsIInterfaceRequestor)
                        .getInterface(Ci.nsIEditingSession)
                        .getEditorForWindow(editframe);

  styleSheets = editor.QueryInterface(Ci.nsIEditorStyleSheets);
  
  editdoc.body.contentEditable = false;
  
  checkStylesheets();

  editdoc.designMode = "on";
  editdoc.body.contentEditable = true;
  editdoc.designMode = "off";

  // Hold the reference to the editor
  editor = SpecialPowers.wrap(editframe)
                        .QueryInterface(Ci.nsIInterfaceRequestor)
                        .getInterface(Ci.nsIWebNavigation)
                        .QueryInterface(Ci.nsIInterfaceRequestor)
                        .getInterface(Ci.nsIEditingSession)
                        .getEditorForWindow(editframe);

  styleSheets = editor.QueryInterface(Ci.nsIEditorStyleSheets);

  editdoc.body.contentEditable = false;

  checkStylesheets();
  
  SimpleTest.finish();
}

//XXX I don't know if this is necessary, but we're dealing with iframes...
SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);

</script>
</pre>
</body>
</html>