﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9050	[FF] scroll to wrong position on writing	debe		"When you set a MozTransform scale factor to the content body of the editor, when writing something the browser scroll in the wrong place.
That happens too with pageDown button, the document scrolls down but not to the real end of the enlarged document, but to the end of the document without the transformation.

It seems that Firefox don't consider that zoom scale factor, that others browser do.

To reproduce this bug after the CKEDITOR.replace part add (content should be long enough to scroll):
{{{
CKEDITOR.on('instanceReady', function(ev){
            var body = ev.editor.document.getBody().$;
            body.style.MozTransformOrigin = ""top left"";
            body.style.MozTransform = ""scale(1.5)"";
            body.style.OTransformOrigin = ""top left"";
            body.style.OTransform = ""scale(1.5)"";
            body.style.TransformOrigin = ""top left"";
            body.style.Transform = ""scale(1.5)"";
            // IE
            body.style.zoom = 1.5;
        });
}}}
"	Bug	closed	Normal		General	3.0	fixed	Firefox	rick.schnorenberg@…
