WIP

Gecko

@namespace url(http://www.w3.org/1999/xhtml); @-moz-document domain(developer.mozilla.org) { pre { -moz-tab-size: 3; } }

フォントの指定を上書き

製作者 CSS で指定されているフォントを上書きする、という話。p { font-family: foo, sans-serif; } 例えば、上のような CSS をあたかも以下のように扱わせる。p { font-family: bar, sans-serif; } やりかた userContent.css とかに @font-face ルールを書…

stroke-dasharray の区切り文字に空白類も許容するようにする。とりあえずなもの:diff --git a/layout/style/nsCSSParser.cpp b/layout/style/nsCSSParser.cpp --- a/layout/style/nsCSSParser.cpp +++ b/layout/style/nsCSSParser.cpp @@ -8139,18 +8139,20…