72にアップしたら、cssでのタブカウンターが機能(カウント)しなくなりました・・・

/* タブカウンター */
#main-window { counter-reset: tabs;}
.tabbrowser-tab:not(:-moz-any([pinned],[concealed])){
counter-increment: tabs;
}
#alltabs-button {
visibility: visible!important;
margin-top: -5px!important;
margin-bottom: -5px!important;
min-height: 30px !important;
max-height: 30px !important;
text-shadow: rgba(255, 255, 255, .5) 0 0px 8px,rgba(255, 255, 255, .7) 0 1px 1px,rgba(255, 255, 255, .2) 0 2px 8px !important;}
#alltabs-button:after { content: "Tab:"counter(tabs);display: -moz-box;}
#alltabs-button > :-moz-any(label, image) { display: none;}


多分下から二番目の
#alltabs-button:after { content: "Tab:"counter(tabs);display: -moz-box;}
の行に問題が起きてるとは思うのですが、どう変更すればまた機能しますでしょうか?