| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google, Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 ElementSetAttributeNode = 108, // Removed from DOM4. | 161 ElementSetAttributeNode = 108, // Removed from DOM4. |
| 162 ElementRemoveAttributeNode = 109, // Removed from DOM4. | 162 ElementRemoveAttributeNode = 109, // Removed from DOM4. |
| 163 ElementGetAttributeNodeNS = 110, // Removed from DOM4. | 163 ElementGetAttributeNodeNS = 110, // Removed from DOM4. |
| 164 DocumentCreateAttribute = 111, // Removed from DOM4. | 164 DocumentCreateAttribute = 111, // Removed from DOM4. |
| 165 DocumentCreateCDATASection = 113, // Removed from DOM4. | 165 DocumentCreateCDATASection = 113, // Removed from DOM4. |
| 166 DocumentInputEncoding = 114, // Removed from DOM4. | 166 DocumentInputEncoding = 114, // Removed from DOM4. |
| 167 DocumentXMLEncoding = 115, // Removed from DOM4. | 167 DocumentXMLEncoding = 115, // Removed from DOM4. |
| 168 DocumentXMLStandalone = 116, // Removed from DOM4. | 168 DocumentXMLStandalone = 116, // Removed from DOM4. |
| 169 DocumentXMLVersion = 117, // Removed from DOM4. | 169 DocumentXMLVersion = 117, // Removed from DOM4. |
| 170 NodeIsSameNode = 118, // Removed from DOM4. | 170 NodeIsSameNode = 118, // Removed from DOM4. |
| 171 NodeIsSupported = 119, // Removed from DOM4. | |
| 172 NodeNamespaceURI = 120, // Removed from DOM4. | 171 NodeNamespaceURI = 120, // Removed from DOM4. |
| 173 NodeLocalName = 122, // Removed from DOM4. | 172 NodeLocalName = 122, // Removed from DOM4. |
| 174 NavigatorProductSub = 123, | 173 NavigatorProductSub = 123, |
| 175 NavigatorVendor = 124, | 174 NavigatorVendor = 124, |
| 176 NavigatorVendorSub = 125, | 175 NavigatorVendorSub = 125, |
| 177 FileError = 126, | 176 FileError = 126, |
| 178 DocumentCharset = 127, // Documented as IE extensions = 0, from KHTML da
ys. | 177 DocumentCharset = 127, // Documented as IE extensions = 0, from KHTML da
ys. |
| 179 PrefixedAnimationEndEvent = 128, | 178 PrefixedAnimationEndEvent = 128, |
| 180 UnprefixedAnimationEndEvent = 129, | 179 UnprefixedAnimationEndEvent = 129, |
| 181 PrefixedAndUnprefixedAnimationEndEvent = 130, | 180 PrefixedAndUnprefixedAnimationEndEvent = 130, |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 | 358 |
| 360 void updateMeasurements(); | 359 void updateMeasurements(); |
| 361 | 360 |
| 362 OwnPtr<BitVector> m_countBits; | 361 OwnPtr<BitVector> m_countBits; |
| 363 BitVector m_CSSFeatureBits; | 362 BitVector m_CSSFeatureBits; |
| 364 }; | 363 }; |
| 365 | 364 |
| 366 } // namespace WebCore | 365 } // namespace WebCore |
| 367 | 366 |
| 368 #endif // UseCounter_h | 367 #endif // UseCounter_h |
| OLD | NEW |