blob: 69901d163867f09b44c09782ac004ea5be8afeed [file] [log] [blame]
commit-queue@webkit.org0469ec62013-12-16 06:53:38 +00001<!doctype html>
2<html>
3 <head>
4 <title>maction toggle</title>
5 </head>
6 <body>
7
8 <!-- selection="1" (default) ; three clicks -->
9 <math>
10 <mrow>
11 <mn>4</mn>
12 </mrow>
13 </math>
14
15 <!-- selection="2" ; one click -->
16 <math>
17 <mrow>
18 <mn>3</mn>
19 </mrow>
20 </math>
21
22 <!-- selection="4" (last child) ; one click -->
23 <math>
24 <mrow>
25 <mn>1</mn>
26 </mrow>
27 </math>
28
29 <!-- Other edge cases -->
30 <math>
31 <mrow>
32 </mrow>
33 </math>
34 <math>
35 <mrow>
36 <mn>1</mn>
37 </mrow>
38 </math>
39 <math>
40 <mrow>
41 <mn>2</mn>
42 </mrow>
43 </math>
44 <math>
45 <mrow>
46 <mn>2</mn>
47 </mrow>
48 </math>
49 <math>
50 <mrow>
51 <mn>2</mn>
52 </mrow>
53 </math>
54 <math>
55 <mrow>
56 <mn>1</mn>
57 </mrow>
58 </math>
59 <math>
60 <mrow>
61 <mn>1</mn>
62 </mrow>
63 </math>
64 <math>
65 <mrow>
66 <mn>3</mn>
67 </mrow>
68 </math>
69 <math>
70 <mrow>
71 <mn>2</mn>
72 </mrow>
73 </math>
74 <math>
75 <mrow>
76 <mn>2</mn>
77 </mrow>
78 <mrow>
79 <mn>1</mn>
80 </mrow>
81 <mrow>
82 <mn>2</mn>
83 </mrow>
84 <mrow>
85 <mn>2</mn>
86 </mrow>
87 </math>
88
89 <!-- Nested <maction> elements ; bubble = false -->
90 <math>
91 <mrow>
92 <mn>2</mn>
93 </mrow>
94 </math>
95
96 <!-- Nested <maction> elements ; bubble = true -->
97 <math>
98 <mrow>
darin@apple.com31ae38f2013-12-18 18:02:14 +000099 <mn>2</mn>
commit-queue@webkit.org0469ec62013-12-16 06:53:38 +0000100 </mrow>
101 </math>
102
103 <!-- Prevent default -->
104 <math>
105 <mrow>
106 <mn>1</mn>
107 </mrow>
108 </math>
109
110 </body>
111</html>