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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 } | 222 } |
223 | 223 |
224 bool WebAXObject::isAriaReadOnly() const | 224 bool WebAXObject::isAriaReadOnly() const |
225 { | 225 { |
226 if (isDetached()) | 226 if (isDetached()) |
227 return 0; | 227 return 0; |
228 | 228 |
229 return equalIgnoringCase(m_private->getAttribute(HTMLNames::aria_readonlyAtt
r), "true"); | 229 return equalIgnoringCase(m_private->getAttribute(HTMLNames::aria_readonlyAtt
r), "true"); |
230 } | 230 } |
231 | 231 |
| 232 WebString WebAXObject::ariaAutoComplete() const |
| 233 { |
| 234 if (isDetached()) |
| 235 return WebString(); |
| 236 |
| 237 return m_private->ariaAutoComplete(); |
| 238 } |
| 239 |
232 bool WebAXObject::isButtonStateMixed() const | 240 bool WebAXObject::isButtonStateMixed() const |
233 { | 241 { |
234 if (isDetached()) | 242 if (isDetached()) |
235 return 0; | 243 return 0; |
236 | 244 |
237 return m_private->checkboxOrRadioValue() == ButtonStateMixed; | 245 return m_private->checkboxOrRadioValue() == ButtonStateMixed; |
238 } | 246 } |
239 | 247 |
240 bool WebAXObject::isChecked() const | 248 bool WebAXObject::isChecked() const |
241 { | 249 { |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1238 m_private = object; | 1246 m_private = object; |
1239 return *this; | 1247 return *this; |
1240 } | 1248 } |
1241 | 1249 |
1242 WebAXObject::operator WTF::PassRefPtr<AXObject>() const | 1250 WebAXObject::operator WTF::PassRefPtr<AXObject>() const |
1243 { | 1251 { |
1244 return m_private.get(); | 1252 return m_private.get(); |
1245 } | 1253 } |
1246 | 1254 |
1247 } // namespace blink | 1255 } // namespace blink |
OLD | NEW |