https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7a3894d75f6a5ebb50287e0af52744d5dd0df10b authored by Luke Bjerring on 17 May 2018, 17:45:58 UTC
Include attribute types in dep list
Tip revision: 7a3894d
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