1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/editor/libeditor/html/tests/test_bug372345.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,59 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=372345 1.8 +--> 1.9 +<head> 1.10 + <title>Test for Bug 372345</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=372345">Mozilla Bug 372345</a> 1.17 +<p id="display"></p> 1.18 +<div id="content"> 1.19 + <iframe src="data:text/html,<body>"></iframe> 1.20 +</div> 1.21 +<pre id="test"> 1.22 +<script type="application/javascript"> 1.23 + 1.24 +/** Test for Bug 372345 **/ 1.25 +SimpleTest.waitForExplicitFinish(); 1.26 +addLoadEvent(function() { 1.27 + var iframe = document.querySelector("iframe"); 1.28 + var doc = iframe.contentDocument; 1.29 + var content = doc.body; 1.30 + var link = content.querySelector("a"); 1.31 + function testCursor(post) { 1.32 + setTimeout(function() { 1.33 + var link = document.createElement("a"); 1.34 + link.href = "http://mozilla.org/"; 1.35 + link.textContent = "link"; 1.36 + link.style.cursor = "pointer"; 1.37 + content.appendChild(link); 1.38 + is(iframe.contentWindow.getComputedStyle(link, null).cursor, "pointer", "Make sure that the cursor is set to pointer"); 1.39 + setTimeout(post, 0); 1.40 + }, 0); 1.41 + } 1.42 + testCursor(function() { 1.43 + doc.designMode = "on"; 1.44 + testCursor(function() { 1.45 + doc.designMode = "off"; 1.46 + testCursor(function() { 1.47 + content.setAttribute("contenteditable", "true"); 1.48 + testCursor(function() { 1.49 + content.removeAttribute("contenteditable"); 1.50 + testCursor(function() { 1.51 + SimpleTest.finish(); 1.52 + }); 1.53 + }); 1.54 + }); 1.55 + }); 1.56 + }); 1.57 +}); 1.58 + 1.59 +</script> 1.60 +</pre> 1.61 +</body> 1.62 +</html>