summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-visited/mathml-links.html
blob: eee49180e518010d84ededc0330eaa977409bfd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE HTML>
<html>
  <head>
    <style>
      :link { color: red; }
      :visited { color: green; }
    </style>
  </head>
  <body>
    <math href="visited-page.html" display="block">
      <mi>x</mi>
      <mo>=</mo>
      <mfrac>
        <mrow>
          <msqrt>
            <mn>5</mn>
          </msqrt>
        </mrow>
        <mrow>
          <menclose
             notation="radical circle roundedbox updiagonalstrike downdiagonalstrike">
            <mn>2</mn>
          </menclose>
        </mrow>
      </mfrac>
      <mo>+</mo>
      <mfrac bevelled="true">
        <mn>2</mn>
        <mn>3</mn>
      </mfrac>
    </math>
  </body>
</html>