In Safari, both mac and pc versions, selecting a new font or font size doesn't change
the current typein. It is possible to select existing text and use the font menus to
change it's characteristic.
the current typein. It is possible to select existing text and use the font menus to
change it's characteristic.
Re: Safari bug: font and font size
Yes, font properties should work on a selection of a text already entered in the editor. Can you reproduce this issue on our demo site and/or nightly build? If so, we would appreciate if you reported it on our Development site along with a description of the environment and detailed steps to reproduce it. Thanks!
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Safari bug: font and font size
Doris
Re: Safari bug: font and font size
Your sample site runs safari correctly bit I was able to cut down the environment to
this very minimal web page, which illustrates the problem.
<script language=javascript src='/ckeditor/ckeditor.js'></script>
<script>
var ckeditor;
function js_setup_ckeditor() {
ckeditor = CKEDITOR.replace('textentry');
}
function LoadFn(evt)
{
js_setup_ckeditor();
}
</script>
<textarea name=textentry id=f14 style='height:195px; width:165px' wrap=soft><p>
Name Here</p>
</textarea>
<body onLoad='LoadFn(event)' onClick='ClickFn(event)' onMouseDown='MouseDownFn(event)'
onUnload='UnloadFn(event)' onMouseMove='MoveFn(event)'>