blob: 99923148888ff1877b63e58d4ac2be687be0b76f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
|