summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/test_bug780035.html
diff options
context:
space:
mode:
Diffstat (limited to 'editor/libeditor/tests/test_bug780035.html')
-rw-r--r--editor/libeditor/tests/test_bug780035.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/editor/libeditor/tests/test_bug780035.html b/editor/libeditor/tests/test_bug780035.html
new file mode 100644
index 0000000000..9992314888
--- /dev/null
+++ b/editor/libeditor/tests/test_bug780035.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<!--
+https://bugzilla.mozilla.org/show_bug.cgi?id=780035
+-->
+<title>Test for Bug 780035</title>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<script src="/tests/SimpleTest/EventUtils.js"></script>
+<link rel="stylesheet" href="/tests/SimpleTest/test.css">
+<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=780035">Mozilla Bug 780035</a>
+<div contenteditable style="font-size: 13.3333px"></div>
+<script>
+SimpleTest.waitForExplicitFinish();
+SimpleTest.waitForFocus(function() {
+ document.querySelector("div").focus();
+ document.execCommand("stylewithcss", false, true);
+ document.execCommand("defaultParagraphSeparator", false, "div");
+ sendKey("RETURN");
+ sendChar("x");
+ is(document.querySelector("div").innerHTML,
+ "<div><br></div><div>x<br></div>", "No <font> tag should be generated");
+ SimpleTest.finish();
+});
+</script>