2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
7 https://bugzilla.mozilla.org/show_bug.cgi?id=483651
11 <title>Test for Bug
483651</title>
12 <script src=
"/tests/SimpleTest/EventUtils.js"></script>
13 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
14 <link rel=
"stylesheet" href=
"/tests/SimpleTest/test.css">
17 <body onload=
"doTest();">
18 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=483651">Mozilla Bug
483651</a>
20 <div id=
"content" style=
"display: none">
24 <script type=
"application/javascript">
26 /** Test for Bug
483651 **/
28 SimpleTest.waitForExplicitFinish();
32 var editor = SpecialPowers.wrap(t1).editor;
34 ok(editor,
"able to get editor for the element");
37 synthesizeKey(
"KEY_Backspace");
40 // Was the trailing br removed?
41 is(editor.documentIsEmpty, true,
"trailing <br> correctly removed");
43 ok(false,
"test failed with error " + e);
50 <textarea id=
"t1" rows=
"2" columns=
"80"></textarea>