Update web-platform-tests to revision 887d08e63a19b14acf3217df77f12c121a792fed

This commit is contained in:
WPT Sync Bot 2019-06-18 10:23:53 +00:00
parent 97ad913dc2
commit a41065a1f4
65 changed files with 1433 additions and 463 deletions

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Verify mathsize attribute</title>
</head>
<body>
<!-- The style attribute should have the same effect as the mathsize
attribute. -->
<div>
<math>
<mi style="font-size: 200%;">x</mi>
<mi style="font-size: 3em;">x</mi>
</math>
</div>
</body>
</html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Verify mathsize attribute</title>
<link rel="help" href="https://mathml-refresh.github.io/mathml-core/#legacy-mathml-style-attributes">
<meta name="assert" content="Verify mathsize attribute values.">
<link rel="match" href="mathsize-attribute-ref.html">
</head>
<body>
<!-- This verifies the effect of the mathsize attribute. -->
<div>
<math>
<mi mathsize="200%">x</mi>
<mi mathsize="3em">x</mi>
</math>
</div>
</body>
</html>