https://github.com/web-platform-tests/wpt
Revision f0928b6f08d85f8f05c9300b618d2b0cbbfa3b7f authored by Anne van Kesteren on 04 April 2018, 08:14:31 UTC, committed by Anne van Kesteren on 04 April 2018, 08:14:31 UTC
Co-Authored-By: Matt Menke <mmenke@google.com>
1 parent 61d6fc4
Raw File
Tip revision: f0928b6f08d85f8f05c9300b618d2b0cbbfa3b7f authored by Anne van Kesteren on 04 April 2018, 08:14:31 UTC
address feedback by @domenic
Tip revision: f0928b6
webkit-text-fill-color-property-004-ref.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>webkit-text-fill-color on MathML reference</title>
<link rel="author" title="Jeremy Chen" href="jeremychen@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org">
<style>
math {
  font-size: 50px;
  color: green;
}
</style>
<body>
<p>Pass if color of operators and operands are all green!!!</p>
  <math>
    <mrow>
      <mrow>
        <msup>
          <mi>a</mi>
          <mn>2</mn>
        </msup>
        <mo>+</mo>
        <msup>
          <mi>b</mi>
          <mn>2</mn>
        </msup>
      </mrow>
      <mo>=</mo>
      <msup>
        <mi>c</mi>
        <mn>2</mn>
      </msup>
    </mrow>
  </math>
</body>
back to top