OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 } | 267 } |
268 | 268 |
269 bool WebAXObject::isEnabled() const | 269 bool WebAXObject::isEnabled() const |
270 { | 270 { |
271 if (isDetached()) | 271 if (isDetached()) |
272 return 0; | 272 return 0; |
273 | 273 |
274 return m_private->isEnabled(); | 274 return m_private->isEnabled(); |
275 } | 275 } |
276 | 276 |
| 277 bool WebAXObject::supportsARIAExpanded() const |
| 278 { |
| 279 if (isDetached()) |
| 280 return 0; |
| 281 |
| 282 return m_private->supportsARIAExpanded(); |
| 283 } |
| 284 |
277 bool WebAXObject::isExpanded() const | 285 bool WebAXObject::isExpanded() const |
278 { | 286 { |
279 if (isDetached()) | 287 if (isDetached()) |
280 return 0; | 288 return 0; |
281 | 289 |
282 return m_private->isExpanded(); | 290 return m_private->isExpanded(); |
283 } | 291 } |
284 | 292 |
285 bool WebAXObject::isFocused() const | 293 bool WebAXObject::isFocused() const |
286 { | 294 { |
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1171 m_private = object; | 1179 m_private = object; |
1172 return *this; | 1180 return *this; |
1173 } | 1181 } |
1174 | 1182 |
1175 WebAXObject::operator WTF::PassRefPtr<AXObject>() const | 1183 WebAXObject::operator WTF::PassRefPtr<AXObject>() const |
1176 { | 1184 { |
1177 return m_private.get(); | 1185 return m_private.get(); |
1178 } | 1186 } |
1179 | 1187 |
1180 } // namespace blink | 1188 } // namespace blink |
OLD | NEW |