OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 16 matching lines...) Expand all Loading... |
27 */ | 27 */ |
28 | 28 |
29 #include "config.h" | 29 #include "config.h" |
30 #include "AccessibilityRenderObject.h" | 30 #include "AccessibilityRenderObject.h" |
31 | 31 |
32 #include "AXObjectCache.h" | 32 #include "AXObjectCache.h" |
33 #include "AccessibilityImageMapLink.h" | 33 #include "AccessibilityImageMapLink.h" |
34 #include "AccessibilitySVGRoot.h" | 34 #include "AccessibilitySVGRoot.h" |
35 #include "AccessibilitySpinButton.h" | 35 #include "AccessibilitySpinButton.h" |
36 #include "AccessibilityTable.h" | 36 #include "AccessibilityTable.h" |
| 37 #include "FrameSelection.h" |
37 #include "HTMLFormElement.h" | 38 #include "HTMLFormElement.h" |
38 #include "HTMLImageElement.h" | 39 #include "HTMLImageElement.h" |
39 #include "HTMLLabelElement.h" | 40 #include "HTMLLabelElement.h" |
40 #include "HTMLOptionElement.h" | 41 #include "HTMLOptionElement.h" |
41 #include "HTMLSelectElement.h" | 42 #include "HTMLSelectElement.h" |
42 #include "HTMLTextAreaElement.h" | 43 #include "HTMLTextAreaElement.h" |
43 #include "HitTestResult.h" | 44 #include "HitTestResult.h" |
44 #include "LocalizedStrings.h" | 45 #include "LocalizedStrings.h" |
45 #include "NodeTraversal.h" | 46 #include "NodeTraversal.h" |
46 #include "Page.h" | 47 #include "Page.h" |
(...skipping 3354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3401 } | 3402 } |
3402 | 3403 |
3403 int AccessibilityRenderObject::mathLineThickness() const | 3404 int AccessibilityRenderObject::mathLineThickness() const |
3404 { | 3405 { |
3405 return getAttribute(MathMLNames::linethicknessAttr).toInt(); | 3406 return getAttribute(MathMLNames::linethicknessAttr).toInt(); |
3406 } | 3407 } |
3407 | 3408 |
3408 #endif | 3409 #endif |
3409 | 3410 |
3410 } // namespace WebCore | 3411 } // namespace WebCore |
OLD | NEW |