https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e7d3527321e5e94401ce1e6d1714bee8205b9e4a authored by Hiroshige Hayashizaki on 22 December 2018, 07:14:30 UTC
[wpt/upgrade-insecure-requests] Fix generateRedirect()
Tip revision: e7d3527
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