| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemRef; | 74 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemRef; |
| 75 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemProp; | 75 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemProp; |
| 76 | 76 |
| 77 #if defined(ENABLE_MICRODATA) && ENABLE_MICRODATA | 77 #if defined(ENABLE_MICRODATA) && ENABLE_MICRODATA |
| 78 [Conditional=MICRODATA] readonly attribute HTMLPropertiesCollection properti
es; | 78 [Conditional=MICRODATA] readonly attribute HTMLPropertiesCollection properti
es; |
| 79 #endif | 79 #endif |
| 80 #endif | 80 #endif |
| 81 | 81 |
| 82 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP | 82 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP |
| 83 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C | 83 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C |
| 84 [Conditional=MICRODATA, Custom] attribute DOMObject itemValue | 84 [Conditional=MICRODATA, Custom] attribute any itemValue |
| 85 setter raises(DOMException); | 85 setter raises(DOMException); |
| 86 #endif | 86 #endif |
| 87 #endif | 87 #endif |
| 88 | 88 |
| 89 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C | 89 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| 90 readonly attribute DOMString titleDisplayString; | 90 readonly attribute DOMString titleDisplayString; |
| 91 #endif | 91 #endif |
| 92 | 92 |
| 93 void click(); | 93 void click(); |
| 94 }; | 94 }; |
| 95 | 95 |
| OLD | NEW |