no bug - Correct some typos in the comments. a=typo-fix
[gecko.git] / accessible / mac / MOXMathAccessibles.h
blob7661ad5c6a24a7b5f3c54857a892a0617569de49
1 /* clang-format off */
2 /* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
3 /* clang-format on */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #import "mozAccessible.h"
10 @interface MOXMathRootAccessible : mozAccessible
12 // overrides
13 - (id)moxMathRootRadicand;
15 // overrides
16 - (id)moxMathRootIndex;
18 @end
20 @interface MOXMathSquareRootAccessible : mozAccessible
22 // overrides
23 - (id)moxMathRootRadicand;
25 @end
27 @interface MOXMathFractionAccessible : mozAccessible
29 // overrides
30 - (id)moxMathFractionNumerator;
32 // overrides
33 - (id)moxMathFractionDenominator;
35 // overrides
36 - (NSNumber*)moxMathLineThickness;
38 @end
40 @interface MOXMathSubSupAccessible : mozAccessible
42 // overrides
43 - (id)moxMathBase;
45 // overrides
46 - (id)moxMathSubscript;
48 // overrides
49 - (id)moxMathSuperscript;
51 @end
53 @interface MOXMathUnderOverAccessible : mozAccessible
55 // overrides
56 - (id)moxMathBase;
58 // overrides
59 - (id)moxMathUnder;
61 // overrides
62 - (id)moxMathOver;
64 @end