Bug 573041 - Clicker code should happen on content side [r=mfinkle]

This commit is contained in:
Vivien Nicolas 2010-06-21 22:16:37 +02:00
parent 3e3caa9c00
commit 4900562688

View File

@ -317,8 +317,8 @@ Point.prototype = {
function Rect(x, y, w, h) {
this.left = x;
this.top = y;
this.right = x+w;
this.bottom = y+h;
this.right = x + w;
this.bottom = y + h;
};
Rect.fromRect = function fromRect(r) {