p { font: bolder x-large monospace; }
will result in Mozilla in bold large monospace font, as expected. While the following stylesheet:
p { font: monospace bolder x-large; }
will result in default font. The reason is incorrect order of values of "font" property. Special inspection could be introduced to detect such errors.