2010-05-31 10:50:55 -07:00
<!DOCTYPE HTML>
< html >
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=426082
-->
< head >
< title > Test for Bug 426082< / title >
< script type = "application/javascript" src = "/tests/SimpleTest/SimpleTest.js" > < / script >
< script type = "application/javascript" src = "/tests/SimpleTest/EventUtils.js" > < / script >
< script type = "application/javascript" src = "/tests/SimpleTest/WindowSnapshot.js" > < / script >
< link rel = "stylesheet" type = "text/css" href = "/tests/SimpleTest/test.css" / >
< style >
canvas {
display: none;
}
< / style >
< / head >
< body onload = "runTests()" >
< a target = "_blank" href = "https://bugzilla.mozilla.org/show_bug.cgi?id=426082" > Mozilla Bug 426082< / a >
< p id = "display" > < / p >
< div id = "content" style = "display: none" >
< / div >
< pre id = "test" >
< script type = "application/javascript;version=1.8" >
/** Test for Bug 426082 **/
SimpleTest.waitForExplicitFinish();
2010-05-31 12:10:55 -07:00
var normalButtonCanvas, pressedButtonCanvas, normalFocusedButtonCanvas,
pressedFocusedButtonCanvas, currentSnapshot, button, label, outside;
2010-05-31 10:50:55 -07:00
function runTests() {
normalButtonCanvas = $("normalButtonCanvas");
pressedButtonCanvas = $("pressedButtonCanvas");
2010-05-31 12:10:55 -07:00
normalFocusedButtonCanvas = $("normalFocusedButtonCanvas");
pressedFocusedButtonCanvas = $("pressedFocusedButtonCanvas");
2010-05-31 10:50:55 -07:00
currentSnapshot = $("currentSnapshot");
button = $("button");
label = $("label");
outside = $("outside");
2011-02-24 18:56:50 -08:00
SimpleTest.executeSoon(executeTests);
2010-05-31 10:50:55 -07:00
}
function isRectContainedInRectFromRegion(rect, region) {
return Array.some(region, function (r) {
return rect.left >= r.left & &
rect.top >= r.top & &
rect.right < = r.right & &
rect.bottom < = r.bottom;
});
}
function paintListener(e) {
2011-02-24 18:56:50 -08:00
if (isRectContainedInRectFromRegion(buttonRect(), e.clientRects)) {
gNeedsPaint = false;
2010-05-31 10:50:55 -07:00
takeSnapshot(currentSnapshot);
2011-02-24 18:56:50 -08:00
}
2010-05-31 10:50:55 -07:00
}
2011-02-24 18:56:50 -08:00
var gNeedsPaint = false;
2010-05-31 10:50:55 -07:00
function executeTests() {
var testYielder = tests();
function execNext() {
try {
2011-02-24 18:56:50 -08:00
if (!gNeedsPaint) {
testYielder.next();
button.getBoundingClientRect(); // Flush.
gNeedsPaint = true;
}
2012-03-07 17:15:57 -08:00
SimpleTest.executeSoon(execNext);
2010-05-31 10:50:55 -07:00
} catch (e) {}
}
execNext();
}
function tests() {
window.addEventListener("MozAfterPaint", paintListener, false);
2011-02-24 18:56:50 -08:00
takeSnapshot(normalButtonCanvas);
// Press the button.
sendMouseEvent("mousemove", button);
sendMouseEvent("mousedown", button);
yield;
takeSnapshot(pressedFocusedButtonCanvas);
compareSnapshots_(normalButtonCanvas, pressedFocusedButtonCanvas, false, "Pressed focused buttons should look different from normal buttons.");
// Release.
sendMouseEvent("mouseup", button);
yield;
// make sure the button is focused as this doesn't happen on click on Mac
button.focus();
takeSnapshot(normalFocusedButtonCanvas);
compareSnapshots_(normalFocusedButtonCanvas, pressedFocusedButtonCanvas, false, "Pressed focused buttons should look different from normal focused buttons.");
// Unfocus the button.
sendMouseEvent("mousedown", outside);
sendMouseEvent("mouseup", outside);
yield;
2010-05-31 10:50:55 -07:00
// Press the label.
sendMouseEvent("mousemove", label);
sendMouseEvent("mousedown", label);
yield;
compareSnapshots_(normalButtonCanvas, currentSnapshot, false, "Pressing the label should have pressed the button.");
takeSnapshot(pressedButtonCanvas);
// Move the mouse down from the label.
sendMouseEvent("mousemove", outside);
yield;
compareSnapshots_(normalButtonCanvas, currentSnapshot, true, "Moving the mouse down from the label should have unpressed the button.");
// ... and up again.
sendMouseEvent("mousemove", label);
yield;
compareSnapshots_(pressedButtonCanvas, currentSnapshot, true, "Moving the mouse back on top of the label should have pressed the button.");
// Release.
sendMouseEvent("mouseup", label);
yield;
2010-05-31 12:10:55 -07:00
compareSnapshots_(normalFocusedButtonCanvas, currentSnapshot, true, "Releasing the mouse over the label should have unpressed (and focused) the button.");
2010-05-31 10:50:55 -07:00
// Press the label and remove it.
sendMouseEvent("mousemove", label);
sendMouseEvent("mousedown", label);
yield;
label.parentNode.removeChild(label);
yield;
compareSnapshots_(normalButtonCanvas, currentSnapshot, true, "Removing the label should have unpressed the button.");
sendMouseEvent("mouseup", label);
window.removeEventListener("MozAfterPaint", paintListener, false);
SimpleTest.finish();
}
function sendMouseEvent(t, elem) {
var r = elem.getBoundingClientRect();
synthesizeMouse(elem, r.width / 2, r.height / 2, {type: t});
}
function compareSnapshots_(c1, c2, shouldBeIdentical, msg) {
var [correct, c1url, c2url] = compareSnapshots(c1, c2, shouldBeIdentical);
if (correct) {
2010-07-15 14:07:43 -07:00
if (shouldBeIdentical) {
ok(true, msg + " - expected " + c1url);
} else {
ok(true, msg + " - got " + c1url + " and " + c2url);
}
2010-05-31 10:50:55 -07:00
} else {
if (shouldBeIdentical) {
ok(false, msg + " - expected " + c1url + " but got " + c2url);
} else {
ok(false, msg + " - expected something other than " + c1url);
}
}
}
function takeSnapshot(canvas) {
var r = buttonRect();
var ctx = canvas.getContext("2d");
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
2010-07-15 14:07:43 -07:00
canvas.width = r.width + 4;
canvas.height = r.height + 4;
2010-05-31 10:50:55 -07:00
ctx.clearRect(0, 0, canvas.width, canvas.height);
2010-07-15 14:07:43 -07:00
ctx.drawWindow(window, r.left - 2, r.top - 2, r.width + 4, r.height + 4, "#FFF");
2010-05-31 10:50:55 -07:00
}
function buttonRect() {
return button.getBoundingClientRect();
}
< / script >
< / pre >
< p > < input type = "button" value = "Button" id = "button" > < / p >
< p > < label for = "button" id = "label" > Label< / label > < / p >
< p id = "outside" > Something under the label< / p >
2010-07-15 14:07:43 -07:00
< canvas id = "normalButtonCanvas" > < / canvas >
< canvas id = "pressedButtonCanvas" > < / canvas >
< canvas id = "normalFocusedButtonCanvas" > < / canvas >
< canvas id = "pressedFocusedButtonCanvas" > < / canvas >
< canvas id = "currentSnapshot" > < / canvas >
2010-05-31 10:50:55 -07:00
< / body >
< / html >