| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 DOMFocusInOutEvent = 211, | 232 DOMFocusInOutEvent = 211, |
| 233 FileGetLastModifiedDate = 212, | 233 FileGetLastModifiedDate = 212, |
| 234 HTMLElementInnerText = 213, | 234 HTMLElementInnerText = 213, |
| 235 HTMLElementOuterText = 214, | 235 HTMLElementOuterText = 214, |
| 236 ReplaceDocumentViaJavaScriptURL = 215, | 236 ReplaceDocumentViaJavaScriptURL = 215, |
| 237 ElementPrefixedMatchesSelector = 217, | 237 ElementPrefixedMatchesSelector = 217, |
| 238 DOMImplementationCreateCSSStyleSheet = 218, | 238 DOMImplementationCreateCSSStyleSheet = 218, |
| 239 CSSStyleSheetRules = 219, | 239 CSSStyleSheetRules = 219, |
| 240 CSSStyleSheetAddRule = 220, | 240 CSSStyleSheetAddRule = 220, |
| 241 CSSStyleSheetRemoveRule = 221, | 241 CSSStyleSheetRemoveRule = 221, |
| 242 // The above items are available in M33 branch. |
| 243 |
| 242 InitMessageEvent = 222, | 244 InitMessageEvent = 222, |
| 243 PrefixedInitMessageEvent = 223, | 245 PrefixedInitMessageEvent = 223, |
| 244 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. | 246 ElementSetPrefix = 224, // Element.prefix is readonly in DOM4. |
| 245 CSSStyleDeclarationGetPropertyCSSValue = 225, | 247 CSSStyleDeclarationGetPropertyCSSValue = 225, |
| 246 SVGElementGetPresentationAttribute = 226, | 248 SVGElementGetPresentationAttribute = 226, |
| 247 PrefixedMediaCancelKeyRequest = 229, | 249 PrefixedMediaCancelKeyRequest = 229, |
| 248 DOMImplementationHasFeature = 230, | 250 DOMImplementationHasFeature = 230, |
| 249 DOMImplementationHasFeatureReturnFalse = 231, | 251 DOMImplementationHasFeatureReturnFalse = 231, |
| 250 CanPlayTypeKeySystem = 232, | 252 CanPlayTypeKeySystem = 232, |
| 251 PrefixedDevicePixelRatioMediaFeature = 233, | 253 PrefixedDevicePixelRatioMediaFeature = 233, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 281 DeprecatedWebKitRepeatingRadialGradient = 264, | 283 DeprecatedWebKitRepeatingRadialGradient = 264, |
| 282 PrefixedGetImageDataHD = 265, | 284 PrefixedGetImageDataHD = 265, |
| 283 PrefixedPutImageDataHD = 266, | 285 PrefixedPutImageDataHD = 266, |
| 284 PrefixedImageSmoothingEnabled = 267, | 286 PrefixedImageSmoothingEnabled = 267, |
| 285 UnprefixedImageSmoothingEnabled = 268, | 287 UnprefixedImageSmoothingEnabled = 268, |
| 286 ShadowRootApplyAuthorStyles = 269, | 288 ShadowRootApplyAuthorStyles = 269, |
| 287 PromiseConstructor = 270, | 289 PromiseConstructor = 270, |
| 288 PromiseCast = 271, | 290 PromiseCast = 271, |
| 289 PromiseReject = 272, | 291 PromiseReject = 272, |
| 290 PromiseResolve = 273, | 292 PromiseResolve = 273, |
| 293 // The above items are available in M34 branch. |
| 294 |
| 291 TextAutosizing = 274, | 295 TextAutosizing = 274, |
| 292 TextAutosizingLayout = 275, | 296 TextAutosizingLayout = 275, |
| 293 HTMLAnchorElementPingAttribute = 276, | 297 HTMLAnchorElementPingAttribute = 276, |
| 294 JavascriptExhaustedMemory = 277, | 298 JavascriptExhaustedMemory = 277, |
| 295 InsertAdjacentHTML = 278, | 299 InsertAdjacentHTML = 278, |
| 296 SVGClassName = 279, | 300 SVGClassName = 279, |
| 297 HTMLAppletElement = 280, | 301 HTMLAppletElement = 280, |
| 298 HTMLMediaElementSeekToFragmentStart = 281, | 302 HTMLMediaElementSeekToFragmentStart = 281, |
| 299 HTMLMediaElementPauseAtFragmentEnd = 282, | 303 HTMLMediaElementPauseAtFragmentEnd = 282, |
| 300 PrefixedWindowURL = 283, | 304 PrefixedWindowURL = 283, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 | 386 |
| 383 void updateMeasurements(); | 387 void updateMeasurements(); |
| 384 | 388 |
| 385 OwnPtr<BitVector> m_countBits; | 389 OwnPtr<BitVector> m_countBits; |
| 386 BitVector m_CSSFeatureBits; | 390 BitVector m_CSSFeatureBits; |
| 387 }; | 391 }; |
| 388 | 392 |
| 389 } // namespace WebCore | 393 } // namespace WebCore |
| 390 | 394 |
| 391 #endif // UseCounter_h | 395 #endif // UseCounter_h |
| OLD | NEW |