xfbmlではなく、プレーンなiframeコードを使用しています(フラグメントが追加されたため、基本的なiframeに戻りました)。
<iframe scrolling="no" frameborder="0" style="border: medium none; overflow: hidden; width: 92px; height: 22px; position:absolute;top:3px;left:180px;" allowtransparency="true" src="http://www.facebook.com/plugins/like.php?href=http://www.xxxxwebsitexxxx.co.uk&layout=button_count&show_faces=false&width=92&action=like&font=arial&colorscheme=light"></iframe>
ボタンは正しく表示されますが、Firefox でクリックすると、次のエラーが表示されます。
this.event is undefined
http://static.ak.fbcdn.net/rsrc.php/v1/yW/r/MrPDat_Xp7Z.js (line 31)
問題のある行は次のとおりだと思います。
__d("DOMEvent",["copyProperties"],function(a,b,c,d,e,f){var g=b("copyProperties");function h(i){this.event=i||window.event;this.target=this.event.target||this.event.srcElement;}g(h.prototype,{preventDefault:function(){var i=this.event;i.preventDefault?i.preventDefault():i.returnValue=false;return this;},stopPropagation:function(){var i=this.event;i.stopPropagation?i.stopPropagation():i.cancelBubble=true;return this;},kill:function(){this.stopPropagation().preventDefault();return this;}});e.exports=h;});
__d("DOMEventListener",[],function(a,b,c,d,e,f){var g,h;if(window.addEventListener){g=function(j,k,l){j.addEventListener (k,l,false);};h=function(j,k,l){j.removeEventListener(k,l,false);};}else if(window.attachEvent){g=function(j,k) ,l){j.attachEvent('on'+k,l);};h=関数(j,k,l){j.detachEvent('on'+k,l);};}var i={ add:function(j,k,l){g(j,k,l);return {remove:function(){h(j,k,l);j=null;}};},remove:h} ;e.exports=i;});
これは既知の問題ですか。互換性の問題ではないことを確認するために、すべてのアドオンを無効にするだけでなく、プレーンな Web サイトで同じコードを試しました。
Macでfirefox 12.0を使用しています。