Stop doing special child insertions if InsertNodeAtPoint() fails, continue with the generic insertion instead. b=478725 r+sr=peterv

This commit is contained in:
Mats Palmgren 2009-02-21 03:51:52 +01:00
Родитель c5bb5f60b5
Коммит 4be9d6af76
3 изменённых файлов: 159 добавлений и 21 удалений

Просмотреть файл

@ -537,12 +537,13 @@ nsHTMLEditor::InsertHTMLWithContext(const nsAString & aInputString,
while (child)
{
res = InsertNodeAtPoint(child, address_of(parentNode), &offsetOfNewNode, PR_TRUE);
if (NS_SUCCEEDED(res))
{
bDidInsert = PR_TRUE;
lastInsertNode = child;
offsetOfNewNode++;
}
if (NS_FAILED(res))
break;
bDidInsert = PR_TRUE;
lastInsertNode = child;
offsetOfNewNode++;
curNode->GetFirstChild(getter_AddRefs(child));
}
}
@ -579,12 +580,12 @@ nsHTMLEditor::InsertHTMLWithContext(const nsAString & aInputString,
}
}
res = InsertNodeAtPoint(child, address_of(parentNode), &offsetOfNewNode, PR_TRUE);
if (NS_SUCCEEDED(res))
{
bDidInsert = PR_TRUE;
lastInsertNode = child;
offsetOfNewNode++;
}
if (NS_FAILED(res))
break;
bDidInsert = PR_TRUE;
lastInsertNode = child;
offsetOfNewNode++;
}
else
{
@ -602,16 +603,18 @@ nsHTMLEditor::InsertHTMLWithContext(const nsAString & aInputString,
while (child)
{
res = InsertNodeAtPoint(child, address_of(parentNode), &offsetOfNewNode, PR_TRUE);
if (NS_SUCCEEDED(res))
{
bDidInsert = PR_TRUE;
lastInsertNode = child;
offsetOfNewNode++;
}
if (NS_FAILED(res))
break;
bDidInsert = PR_TRUE;
lastInsertNode = child;
offsetOfNewNode++;
curNode->GetFirstChild(getter_AddRefs(child));
}
}
else
if (!bDidInsert || NS_FAILED(res))
{
// try to insert
@ -622,8 +625,8 @@ nsHTMLEditor::InsertHTMLWithContext(const nsAString & aInputString,
lastInsertNode = curNode;
}
// assume failure means no legal parent in the document heirarchy.
// try again with the parent of curNode in the paste heirarchy.
// Assume failure means no legal parent in the document hierarchy,
// try again with the parent of curNode in the paste hierarchy.
nsCOMPtr<nsIDOMNode> parent;
while (NS_FAILED(res) && curNode)
{

Просмотреть файл

@ -48,6 +48,7 @@ _TEST_FILES = \
test_bug366682.html \
test_bug432225.html \
test_bug456244.html \
test_bug478725.html \
$(NULL)
libs:: $(_TEST_FILES)

Просмотреть файл

@ -0,0 +1,134 @@
<!DOCTYPE HTML>
<html><head>
<title>Test for bug 478725</title>
<style src="/tests/SimpleTest/test.css" type="text/css"></style>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<script class="testbody" type="application/javascript">
function runTest() {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
function verifyContent(s) {
var e = document.getElementById('i1');
var doc = e.contentDocument;
is(doc.body.innerHTML, s, "");
}
function pasteInto(html,target_id) {
var e = document.getElementById('i1');
var doc = e.contentDocument;
doc.designMode = "on";
doc.body.innerHTML = html;
e = doc.getElementById(target_id);
doc.defaultView.focus();
var selection = doc.defaultView.getSelection();
selection.removeAllRanges();
selection.selectAllChildren(e);
selection.collapseToEnd();
doc.execCommand("paste", false, null);
return e;
}
function copyToClipBoard(s,asHTML,target_id) {
var e = document.getElementById('i2');
var doc = e.contentDocument;
if (asHTML) {
doc.body.innerHTML = s;
} else {
var text = doc.createTextNode(s);
doc.body.appendChild(text);
}
doc.designMode = "on";
doc.defaultView.focus();
var selection = doc.defaultView.getSelection();
selection.removeAllRanges();
if (!target_id) {
selection.selectAllChildren(doc.body);
} else {
var range = document.createRange();
range.selectNode(doc.getElementById(target_id));
selection.addRange(range);
}
doc.execCommand("copy", false, null);
return e;
}
copyToClipBoard("<dl><dd>Hello Kitty</dd></dl>", true);
pasteInto('<ol><li id="paste_here">X</li></ol>',"paste_here");
verifyContent('<ol><li id="paste_here">X<dl><dd>Hello Kitty</dd></dl></li></ol>');
copyToClipBoard("<li>Hello Kitty</li>", true);
pasteInto('<ol><li id="paste_here">X</li></ol>',"paste_here");
verifyContent('<ol><li id="paste_here">X</li><li>Hello Kitty</li></ol>');
copyToClipBoard("<ol><li>Hello Kitty</li></ol>", true);
pasteInto('<ol><li id="paste_here">X</li></ol>',"paste_here");
verifyContent('<ol><li id="paste_here">X</li><li>Hello Kitty</li></ol>');
copyToClipBoard("<ul><li>Hello Kitty</li></ul>", true);
pasteInto('<ol><li id="paste_here">X</li></ol>',"paste_here");
verifyContent('<ol><li id="paste_here">X</li><li>Hello Kitty</li></ol>');
copyToClipBoard("<ul><li>Hello</li><ul><li>Kitty</li></ul></ul>", true);
pasteInto('<ol><li id="paste_here">X</li></ol>',"paste_here");
verifyContent('<ol><li id="paste_here">X</li><li>Hello</li><ul><li>Kitty</li></ul></ol>');
copyToClipBoard("<dl><dd>Hello</dd><dd>Kitty</dd></dl>", true);
pasteInto('<dl><dd id="paste_here">X</dd></dl>',"paste_here");
verifyContent('<dl><dd id="paste_here">X</dd><dd>Hello</dd><dd>Kitty</dd></dl>');
copyToClipBoard("<dl><dd>Hello</dd><dd>Kitty</dd></dl>", true);
pasteInto('<dl><dt id="paste_here">X</dt></dl>',"paste_here");
verifyContent('<dl><dt id="paste_here">X</dt><dd>Hello</dd><dd>Kitty</dd></dl>');
copyToClipBoard("<dl><dt>Hello</dt><dd>Kitty</dd></dl>", true);
pasteInto('<dl><dd id="paste_here">X</dd></dl>',"paste_here");
verifyContent('<dl><dd id="paste_here">X</dd><dt>Hello</dt><dd>Kitty</dd></dl>');
copyToClipBoard("<pre>Kitty</pre>", true);
pasteInto('<pre id="paste_here">Hello </pre>',"paste_here");
verifyContent('<pre id="paste_here">Hello Kitty</pre>');
// I was expecting these to trigger the special TABLE/TR rules in nsHTMLEditor::InsertHTMLWithContext
// but they don't for some reason...
// copyToClipBoard('<table><tr id="copy_here"><td>Kitty</td></tr></table>', true, "copy_here");
// pasteInto('<table><tr id="paste_here"><td>Hello</td></tr></table>',"paste_here");
// verifyContent('');
//
// copyToClipBoard('<table id="copy_here"><tr><td>Kitty</td></tr></table>', true, "copy_here");
// pasteInto('<table><tr id="paste_here"><td>Hello</td></tr></table>',"paste_here");
// verifyContent('');
//
// copyToClipBoard('<table id="copy_here"><tr><td>Kitty</td></tr></table>', true, "copy_here");
// pasteInto('<table id="paste_here"><tr><td>Hello</td></tr></table>',"paste_here");
// verifyContent('');
//
// copyToClipBoard('<table><tr id="copy_here"><td>Kitty</td></tr></table>', true, "copy_here");
// pasteInto('<table id="paste_here"><tr><td>Hello</td></tr></table>',"paste_here");
// verifyContent('');
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(runTest);
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=478725">Mozilla Bug 478725</a>
<p id="display"></p>
<pre id="test">
</pre>
<iframe id="i1" width="200" height="100" src="about:blank"></iframe><br>
<iframe id="i2" width="200" height="100" src="about:blank"></iframe><br>
</body>
</html>