Bug 767684 Test to prevent regression from bug 752210 happening again r=ehsan

This commit is contained in:
Aryeh Gregor 2012-07-05 21:35:10 +01:00
parent 15d0c6dd6c
commit 18fa0731af
2 changed files with 16 additions and 0 deletions

View File

@ -79,6 +79,7 @@ _TEST_FILES = \
test_root_element_replacement.html \
test_bug738366.html \
test_bug757371.html \
test_bug767684.html \
$(NULL)
ifneq (mobile,$(MOZ_BUILD_APP))

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=767684
-->
<title>Test for Bug 767684</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=767684">Mozilla Bug 767684</a>
<div contenteditable>foo<b>bar</b>baz</div>
<script>
getSelection().selectAllChildren(document.querySelector("div"));
document.execCommand("increaseFontSize");
is(document.querySelector("div").innerHTML, "<big>foo<b>bar</b>baz</big>",
"All selected text must be embiggened");
</script>