Update web-platform-tests to revision 2d68590d46a990bf28a08d6384a59962d2e56bf6

This commit is contained in:
WPT Sync Bot 2019-03-14 21:30:32 -04:00
parent bc03d32142
commit ad4cc3691e
135 changed files with 1613 additions and 341 deletions

View file

@ -16,23 +16,26 @@
</style>
</head>
<body>
<p>This test passes if you see fractions with line thickness equal to the height of their blue numerator and cyan denominator.</p>
<p>This test passes if you see the same fraction four times.</p>
<math>
<mfrac linethickness="5px">
<mspace width="20px" height="5px" style="background: blue"></mspace>
<mspace width="20px" height="5px" style="background: cyan"></mspace>
</mfrac>
<mfrac linethickness="10px">
<mfrac>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
<mfrac linethickness="20px">
<mspace width="20px" height="20px" style="background: blue"></mspace>
<mspace width="20px" height="20px" style="background: cyan"></mspace>
<mspace width="20px"/>
<mfrac>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
<mfrac linethickness="50px">
<mspace width="20px" height="50px" style="background: blue"></mspace>
<mspace width="20px" height="50px" style="background: cyan"></mspace>
<mspace width="20px"/>
<mfrac>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
<mspace width="20px"/>
<mfrac>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
</math>
</body>

View file

@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>fractions linethickness</title>
<link rel="help" href="https://mathml-refresh.github.io/mathml-core/#mfrac">
<meta name="assert" content="Verifies 'thin', 'medium', 'thick' and unitless values for the linethickness attribute of the mfrac element">
<meta name="assert" content="Verifies deprecated 'thin', 'medium', 'thick' and unitless values have no effect on the linethickness of the mfrac element">
<link rel="match" href="frac-linethickness-001-ref.html">
<style type="text/css">
@font-face {
@ -19,23 +19,26 @@
</style>
</head>
<body>
<p>This test passes if you see fractions with line thickness equal to the height of their blue numerator and cyan denominator.</p>
<p>This test passes if you see the same fraction four times.</p>
<math>
<mfrac linethickness="thin">
<mspace width="20px" height="5px" style="background: blue"></mspace>
<mspace width="20px" height="5px" style="background: cyan"></mspace>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
<mspace width="20px"/>
<mfrac linethickness="medium">
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
<mspace width="20px"/>
<mfrac linethickness="thick">
<mspace width="20px" height="20px" style="background: blue"></mspace>
<mspace width="20px" height="20px" style="background: cyan"></mspace>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
<mspace width="20px"/>
<mfrac linethickness="5">
<mspace width="20px" height="50px" style="background: blue"></mspace>
<mspace width="20px" height="50px" style="background: cyan"></mspace>
<mspace width="20px" height="10px" style="background: blue"></mspace>
<mspace width="20px" height="10px" style="background: cyan"></mspace>
</mfrac>
</math>
</body>