1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=98997
-->
<head>
<title>Test for Bug 98997</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<style type="text/css">
/*
* This test does NOT test any of the cases where :empty and
* :-moz-only-whitespace differ. We should probably have some tests
* for that as well.
*/
div.test { width: 200px; height: 30px; margin: 5px 0; }
div.test.to, div.test.from:empty { background: orange; }
div.test.to:empty, div.test.from { background: green; }
div.test.to, div.test.from:-moz-only-whitespace { color: maroon; }
div.test.to:-moz-only-whitespace, div.test.from { color: navy; }
</style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=98997">Mozilla Bug 98997</a>
<div id="display">
<div class="test to" onclick="testReplaceChild(this, '')">x</div>
<div class="test to" onclick="testReplaceChild(this, '')"><span>x</span></div>
<div class="test to" onclick="testReplaceChild(this, '')">x<!-- comment --></div>
<div class="test to" onclick="testRemoveChild(this)">x</div>
<div class="test to" onclick="testRemoveChild(this)"><span>x</span></div>
<div class="test to" onclick="testRemoveChild(this)">x<!-- comment --></div>
<div class="test to" onclick="testChangeData(this, '')">x</div>
<div class="test to" onclick="testChangeData(this, '')">x<!-- comment --></div>
<div class="test to" onclick="testDeleteData(this)">x</div>
<div class="test to" onclick="testDeleteData(this)">x<!-- comment --></div>
<div class="test to" onclick="testReplaceData(this, '')">x</div>
<div class="test to" onclick="testReplaceData(this, '')">x<!-- comment --></div>
<div class="test from makeemptytext" onclick="testReplaceChild(this, 'x')"></div>
<div class="test from makeemptytext" onclick="testReplaceChild(this, 'x')"><!-- comment --></div>
<div class="test from" onclick="testReplaceChild(this, 'x')"><!-- comment --></div>
<div class="test from" onclick="testInsertBefore(this, 'x')"></div>
<div class="test from" onclick="testInsertBefore(this, 'x')"><!-- comment --></div>
<div class="test from" onclick="testAppendChild(this, 'x')"></div>
<div class="test from" onclick="testAppendChild(this, 'x')"><!-- comment --></div>
<div class="test from makeemptytext" onclick="testChangeData(this, 'x')"></div>
<div class="test from makeemptytext" onclick="testChangeData(this, 'x')"><!-- comment --></div>
<div class="test from makeemptytext" onclick="testAppendData(this, 'x')"></div>
<div class="test from makeemptytext" onclick="testAppendData(this, 'x')"><!-- comment --></div>
<div class="test from makeemptytext" onclick="testReplaceData(this, 'x')"></div>
<div class="test from makeemptytext" onclick="testReplaceData(this, 'x')"><!-- comment --></div>
</div>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 98997 */
function testInsertBefore(elt, text) {
elt.insertBefore(document.createTextNode(text), elt.firstChild);
}
function testAppendChild(elt, text) {
elt.appendChild(document.createTextNode(text));
}
function testReplaceChild(elt, text) {
elt.replaceChild(document.createTextNode(text), elt.firstChild);
}
function testRemoveChild(elt) {
elt.firstChild.remove();
}
function testChangeData(elt, text) {
elt.firstChild.data = text;
}
function testAppendData(elt, text) {
elt.firstChild.appendData(text);
}
function testDeleteData(elt) {
elt.firstChild.deleteData(0, elt.firstChild.length);
}
function testReplaceData(elt, text) {
elt.firstChild.replaceData(0, elt.firstChild.length, text);
}
var cnodes = document.getElementById("display").childNodes;
var divs = [];
var i;
for (i = 0; i < cnodes.length; ++i) {
if (cnodes[i].nodeName == "DIV")
divs.push(cnodes[i]);
}
for (i in divs) {
let div = divs[i];
if (div.className.match(/makeemptytext/))
div.insertBefore(document.createTextNode(""), div.firstChild);
}
const ORANGE = "rgb(255, 165, 0)";
const MAROON = "rgb(128, 0, 0)";
const GREEN = "rgb(0, 128, 0)";
const NAVY = "rgb(0, 0, 128)";
function color(div) {
return getComputedStyle(div, "").color;
}
function bg(div) {
return getComputedStyle(div, "").backgroundColor;
}
for (i in divs) {
let div = divs[i];
is(bg(div), ORANGE, "should be orange");
is(color(div), MAROON, "should be maroon");
}
for (i in divs) {
let div = divs[i];
var e = document.createEvent("MouseEvents");
e.initEvent("click", true, true);
div.dispatchEvent(e);
}
for (i in divs) {
let div = divs[i];
is(bg(div), GREEN, "should be green");
is(color(div), NAVY, "should be navy");
}
</script>
</pre>
</body>
</html>
|