blob: 939cfc5ba60f96b3c74b6f53da1e2e7c00c3d908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Reset writing-mode and logical property</title>
<link rel="help" href="https://w3c.github.io/mathml-core/#css-styling">
<meta name="assert" content="Verify how forced writing-mode is taken into account for logicial properties.">
<link rel="match" href="reset-and-logicial-property-ref.html">
</head>
<body>
<p>Test passes if you see a green square.</p>
<math style="writing-mode: vertical-lr;
padding-block-start: 200px;
background: green">
<mspace width="200px"/>
</math>
<script src="/mathml/support/feature-detection.js"></script>
<script>MathMLFeatureDetection.ensure_for_match_reftest("has_mspace");</script>
</body>
</html>
|