@@ -24,7 +24,6 @@ is-deeply css1-module.colors<red>, [ 255, 0, 0 ], "colors";
2424is css1-module. property-name(1 ), ' background-attachment' ;
2525lives-ok { css1-module. index };
2626lives-ok { css1-module. index [1 ] };
27- is-deeply css1-module. index [1 ]. default-type, ' keyw' ;
2827is-deeply css1-module. index [1 ]. default, ' scroll' ;
2928is css1-module. property-name(6 ), ' border' ;
3029is css1-module. property-number(' border' ), 6 ;
@@ -42,7 +41,7 @@ ok css21-prop<azimuth>:exists, 'css21 has azimuth';
4241is-deeply css21-prop<border >, {: box, : children[" border-width" , " border-style" , " border-color" ], : edges[" border-top" , " border-right" , " border-bottom" , " border-left" ], :! inherit, : synopsis(" [ 'border-width' || 'border-style' || 'border-color' ]" )}, ' css21 border' ;
4342is-deeply css21-prop<border-style >, {: box, : edges[<border-top-style border-right-style border-bottom-style border-left-style >], :! inherit, : synopsis(" <border-style>\{ 1,4}" ) }, ' css21 border-style' ;
4443
45- is-deeply css21-prop<-xhtml-align >, {: inherit, : synopsis(" <align> | justify" )}, ' css21 alias property metadata' ;
44+ is-deeply css21-prop<-xhtml-align >, {: default( " a nameless value that acts as 'left' if 'direction' is 'ltr', 'right' if 'direction' is 'rtl' " ), : inherit, : synopsis(" <align> | justify" )}, ' css21 alias property metadata' ;
4645is-deeply css21-module. parse-property(' -xhtml-align' , ' center' ), [{ : keyw<center > }, ], ' css21 alias property metadata' ;
4746
4847is-deeply css21-module. colors<red >, [ 255 , 0 , 0 ], " colors" ;
@@ -56,7 +55,7 @@ is css3-module.name, 'CSS3', 'module.name';
5655isa-ok css3-module. grammar, ::(' CSS::Module::CSS3' ), ' css3 grammar' ;
5756isa-ok css3-module. actions, ::(' CSS::Module::CSS3::Actions' ), ' css3 actions' ;
5857my \css3-prop = css3-module. property-metadata;
59- is-deeply css3-prop<azimuth >, {: default[ " center " , [{ : keyw <center >},]] , : inherit, : synopsis(" <angle> | [ <direction> || <behind> ] | <delta>" )}, ' css3 azimuth' ;
58+ is-deeply css3-prop<azimuth >, {: default<center >, : inherit, : synopsis(" <angle> | [ <direction> || <behind> ] | <delta>" )}, ' css3 azimuth' ;
6059is-deeply css3-prop<border >, {: box, : children[" border-width" , " border-style" , " border-color" ], : edges[" border-top" , " border-right" , " border-bottom" , " border-left" ], :! inherit, : synopsis(" [ 'border-width' || 'border-style' || 'border-color' ]" )}, ' css3 border' ;
6160is-deeply css3-prop<border-style >, {: box, : edges[<border-top-style border-right-style border-bottom-style border-left-style >], :! inherit, : synopsis(" <border-style>\{ 1,4}" ) }, ' css3 border-style' ;
6261
@@ -70,14 +69,14 @@ my \at-fontface-module = css3-module.sub-module<@font-face>;
7069isa-ok at-fontface-module. grammar, ::(' CSS::Module::CSS3::Fonts::AtFontFace' ), ' @font-face grammar' ;
7170isa-ok at-fontface-module. actions, ::(' CSS::Module::CSS3::Actions' ), ' @font-face actions' ;
7271my \at-fontface-prop = at-fontface-module. property-metadata;
73- is-deeply at-fontface-prop<font-style >, { : synopsis(" normal | italic | oblique" ), :! inherit, : default[ " normal" , [{ : keyw( " normal " )},]] , }, ' @font-face font-style' ;
72+ is-deeply at-fontface-prop<font-style >, { : synopsis(" normal | italic | oblique" ), :! inherit, : default< normal > , }, ' @font-face font-style' ;
7473
7574my \svg-module = CSS::Module::SVG. module;
7675isa-ok svg-module. grammar, ::(' CSS::Module::SVG' ), ' svg grammar' ;
7776isa-ok svg-module. actions, ::(' CSS::Module::SVG::Actions' ), ' svg actions' ;
7877my \svg-prop = svg-module. property-metadata;
79- is-deeply svg-prop<azimuth >, { : synopsis(" <angle> | [ <direction> || <behind> ] | <delta>" ), : inherit, : default[ " center" , [{ : keyw( " center " )},]] , }, ' svg azimuth' ;
80- is-deeply svg-prop<alignment-baseline >, { : synopsis(" auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical" ), :! inherit, : default[ " baseline" , [{ : keyw( " baseline " )},]] , }, ' svg alignment-baseline' ;
81- is-deeply svg-prop<font-style >, { : synopsis(" normal | italic | oblique" ), : inherit, : default[ " normal" , [{ : keyw( " normal " )},]] , }, ' svg font-style' ;
78+ is-deeply svg-prop<azimuth >, { : synopsis(" <angle> | [ <direction> || <behind> ] | <delta>" ), : inherit, : default< center > , }, ' svg azimuth' ;
79+ is-deeply svg-prop<alignment-baseline >, { : synopsis(" auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical" ), :! inherit, : default< baseline > , }, ' svg alignment-baseline' ;
80+ is-deeply svg-prop<font-style >, { : synopsis(" normal | italic | oblique" ), : inherit, : default< normal > , }, ' svg font-style' ;
8281
8382done-testing ;
0 commit comments