1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/editor/libeditor/html/tests/test_bug607584.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=607584 1.8 +--> 1.9 +<head> 1.10 + <title>Test for Bug 607584</title> 1.11 + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.12 + <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script> 1.13 + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 1.14 +</head> 1.15 +<body> 1.16 +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=607584">Mozilla Bug 607584</a> 1.17 +<p id="display"></p> 1.18 +<div id="content" contenteditable> 1.19 +<p id="foo">Hello world</p> 1.20 +</div> 1.21 +<pre id="test"> 1.22 +<script type="application/javascript"> 1.23 + 1.24 +/** Test for Bug 607584 **/ 1.25 +SimpleTest.waitForExplicitFinish(); 1.26 +SimpleTest.waitForFocus(function() { 1.27 + var content = document.getElementById("content"); 1.28 + content.focus(); 1.29 + var sel = getSelection(); 1.30 + sel.collapse(document.getElementById("foo").firstChild, 5); 1.31 + synthesizeKey("VK_RETURN", {}); 1.32 + var paragraphs = content.querySelectorAll("p"); 1.33 + is(paragraphs.length, 2, "The paragraph should be split in two"); 1.34 + is(paragraphs[0].textContent, "Hello", "The first paragraph should have the correct content"); 1.35 + is(paragraphs[1].textContent, " world", "The second paragraph should have the correct content"); 1.36 + is(paragraphs[0].getAttribute("id"), "foo", "The id of the first paragraph should be retained"); 1.37 + is(paragraphs[1].hasAttribute("id"), false, "The second paragraph shouldn't have an ID"); 1.38 + SimpleTest.finish(); 1.39 +}); 1.40 + 1.41 +</script> 1.42 +</pre> 1.43 +</body> 1.44 +</html>