Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/relations/html5-tree/color-attributes-1.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Color Attributes</title>
<meta name="assert" content="Verify that the mathcolor and mathbackground attributes are supported on the math element.">
<link rel="match" href="color-attributes-1-ref.html"/>
<style>
#content {
color: red;
}
#content > div {
position: absolute;
}
</style>
</head>
<body>
<p>Test passes if you see the text below is written in white on a green
background.</p>
<div id="content">
<div>
<math style="background: red;">
<mtext style="visibility: hidden;">Hello World!</mtext>
</math>
</div>
<div>
<math mathcolor="white" mathbackground="green">
<mtext>Hello World!</mtext>
</math>
</div>
</div>
</body>
</html>