| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 #include "modules/accessibility/AXImageMapLink.h" | 83 #include "modules/accessibility/AXImageMapLink.h" |
| 84 #include "modules/accessibility/AXInlineTextBox.h" | 84 #include "modules/accessibility/AXInlineTextBox.h" |
| 85 #include "modules/accessibility/AXObjectCacheImpl.h" | 85 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 86 #include "modules/accessibility/AXSVGRoot.h" | 86 #include "modules/accessibility/AXSVGRoot.h" |
| 87 #include "modules/accessibility/AXSpinButton.h" | 87 #include "modules/accessibility/AXSpinButton.h" |
| 88 #include "modules/accessibility/AXTable.h" | 88 #include "modules/accessibility/AXTable.h" |
| 89 #include "platform/fonts/FontTraits.h" | 89 #include "platform/fonts/FontTraits.h" |
| 90 #include "platform/geometry/TransformState.h" | 90 #include "platform/geometry/TransformState.h" |
| 91 #include "platform/text/PlatformLocale.h" | 91 #include "platform/text/PlatformLocale.h" |
| 92 #include "platform/text/TextDirection.h" | 92 #include "platform/text/TextDirection.h" |
| 93 #include "wtf/StdLibExtras.h" | 93 #include "platform/wtf/StdLibExtras.h" |
| 94 | 94 |
| 95 using blink::WebLocalizedString; | 95 using blink::WebLocalizedString; |
| 96 | 96 |
| 97 namespace blink { | 97 namespace blink { |
| 98 | 98 |
| 99 using namespace HTMLNames; | 99 using namespace HTMLNames; |
| 100 | 100 |
| 101 static inline LayoutObject* FirstChildInContinuation( | 101 static inline LayoutObject* FirstChildInContinuation( |
| 102 const LayoutInline& layout_object) { | 102 const LayoutInline& layout_object) { |
| 103 LayoutBoxModelObject* r = layout_object.Continuation(); | 103 LayoutBoxModelObject* r = layout_object.Continuation(); |
| (...skipping 2407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2511 | 2511 |
| 2512 bool AXLayoutObject::ElementAttributeValue( | 2512 bool AXLayoutObject::ElementAttributeValue( |
| 2513 const QualifiedName& attribute_name) const { | 2513 const QualifiedName& attribute_name) const { |
| 2514 if (!layout_object_) | 2514 if (!layout_object_) |
| 2515 return false; | 2515 return false; |
| 2516 | 2516 |
| 2517 return EqualIgnoringASCIICase(GetAttribute(attribute_name), "true"); | 2517 return EqualIgnoringASCIICase(GetAttribute(attribute_name), "true"); |
| 2518 } | 2518 } |
| 2519 | 2519 |
| 2520 } // namespace blink | 2520 } // namespace blink |
| OLD | NEW |