@@ -56,6 +56,8 @@ export const pseudoElements: string[] = [':before', ':after', ':first-line', ':f
5656// https://developer.mozilla.org/en-US/docs/Web/CSS/Mozilla_Extensions
5757export const pseudoAliasMap : Record < string , string > =
5858 {
59+ '-moz-center' : 'center' ,
60+ '-webkit-center' : 'center' ,
5961 '-ms-grid-columns' : 'grid-template-columns' ,
6062 '-ms-grid-rows' : 'grid-template-rows' ,
6163 '-ms-grid-row' : 'grid-row-start' ,
@@ -68,6 +70,7 @@ export const pseudoAliasMap: Record<string, string> =
6870 '::-ms-input-placeholder' : '::placeholder' ,
6971 ':-moz-any()' : ':is' ,
7072 '-moz-user-modify' : 'user-modify' ,
73+ '-webkit-match-parent' : 'match-parent' ,
7174 '-moz-background-clip' : 'background-clip' ,
7275 '-moz-background-origin' : 'background-origin' ,
7376 '-ms-input-placeholder' : 'placeholder' ,
@@ -225,6 +228,7 @@ export const webkitExtensions = new Set([
225228 '-webkit-min-logical-height' ,
226229 '-webkit-min-logical-width' ,
227230 '-webkit-nbsp-mode' ,
231+ '-webkit-match-parent' ,
228232 '-webkit-perspective-origin-x' ,
229233 '-webkit-perspective-origin-y' ,
230234 '-webkit-rtl-ordering' ,
0 commit comments