This extension adds buttons to Enlarge/Reduce the Font Size (Not Zoom) on the Toolbar.
Current Version is here.
https://addons.mozilla.org/en-US/firefox/addon/9872

var FontSize_Extension = {
enlarge: function()
{
if( ZoomManager.useFullZoom )
{
ZoomManager.useFullZoom = false;
FullZoom.enlarge();
ZoomManager.useFullZoom = true;
}
else
{
FullZoom.enlarge();
}
},
reduce: function()
{
if( ZoomManager.useFullZoom )
{
ZoomManager.useFullZoom = false;
FullZoom.reduce();
ZoomManager.useFullZoom = true;
}
else
{
FullZoom.reduce();
}
},
reset: function()
{
FullZoom.reset();
}
}