mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 767684 Test to prevent regression from bug 752210 happening again r=ehsan
This commit is contained in:
parent
15d0c6dd6c
commit
18fa0731af
@ -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))
|
||||
|
15
editor/libeditor/html/tests/test_bug767684.html
Normal file
15
editor/libeditor/html/tests/test_bug767684.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user