Skip to content

Commit ce02fd1

Browse files
committed
Remove "thin", "thick", "medium" values mfrac@linethickness #4
Agreed on https://lists.w3.org/Archives/Public/public-mathml4/2019Mar/0007.html "General agreement that all named lengths and unitless precents (#24, #4, #7), should be removed from the core"
1 parent d6f9de7 commit ce02fd1

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

index.html

+2-4
Original file line numberDiff line numberDiff line change
@@ -4606,9 +4606,7 @@ <h3><span class="secnum">4.3.2</span> Fractions <span>&lt;mfrac&gt;</span>
46064606
<code class="MATH">FractionRuleThickness</code>
46074607
Use the <code>linethickness</code> attribute <cite>[<a href="#bibx11">MathML3</a>]</cite> to determine the
46084608
actual thickness of the fraction bar. A percent or unitless length is
4609-
interpreted as a multiple of the default rule thickness and
4610-
the named values ”thin”, ”medium” and ”thick” are interpreted as
4611-
50%, 100%, 200%.
4609+
interpreted as a multiple of the default rule thickness.
46124610
The color and visibility of the fraction bar must honor the values given by the
46134611
<code>color</code> and <code>visibility</code> CSS properties on the <code>mfrac</code> element.
46144612
</p>
@@ -12454,7 +12452,7 @@ <h1><span class="secnum">Appendix C</span> Relax NG
1245412452
<a name="rncrncmfrac" style="color:blue;">mfrac</a> = <span style="font-weight:bold;">element</span> mfrac {<a href="#rncrncmfrac.attributes">mfrac.attributes</a>, <a href="#rncrncMathExpression">MathExpression</a>, <a href="#rncrncMathExpression">MathExpression</a>}
1245512453
<a name="rncrncmfrac.attributes" style="color:blue;">mfrac.attributes</a> =
1245612454
<a href="#rncrncCommonAtt">CommonAtt</a>, <a href="#rncrncCommonPresAtt">CommonPresAtt</a>,
12457-
<span style="font-weight:bold;">attribute</span> linethickness {<a href="#rncrnclength">length</a> | "thin" | "medium" | "thick"}?,
12455+
<span style="font-weight:bold;">attribute</span> linethickness {<a href="#rncrnclength">length</a>}?,
1245812456
<span style="font-weight:bold;">attribute</span> numalign {"left" | "center" | "right"}?,
1245912457
<span style="font-weight:bold;">attribute</span> denomalign {"left" | "center" | "right"}?,
1246012458
<span style="font-weight:bold;">attribute</span> bevelled {"true" | "false"}?

mathml4-core.rnc

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ mrow.attributes =
182182
mfrac = element mfrac {mfrac.attributes, MathExpression, MathExpression}
183183
mfrac.attributes =
184184
CommonAtt, CommonPresAtt,
185-
attribute linethickness {length | "thin" | "medium" | "thick"}?,
185+
attribute linethickness {length}?,
186186
attribute numalign {"left" | "center" | "right"}?,
187187
attribute denomalign {"left" | "center" | "right"}?,
188188
attribute bevelled {"true" | "false"}?

src/presentation.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -480,9 +480,7 @@ <h3>Fractions <span>&lt;mfrac&gt;</span>
480480
<code class="MATH">FractionRuleThickness</code>
481481
Use the <code>linethickness</code> attribute <cite>[<a href="bib.html#bibx11">auto</a>]</cite> to determine the
482482
actual thickness of the fraction bar. A percent or unitless length is
483-
interpreted as a multiple of the default rule thickness and
484-
the named values ”thin”, ”medium” and ”thick” are interpreted as
485-
50%, 100%, 200%.
483+
interpreted as a multiple of the default rule thickness.
486484
The color and visibility of the fraction bar must honor the values given by the
487485
<code>color</code> and <code>visibility</code> CSS properties on the <code>mfrac</code> element.</p>
488486
</div>

0 commit comments

Comments
 (0)