Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #ifndef WebFeature_h | |
| 2 #define WebFeature_h | |
| 3 | |
| 4 namespace blink { | |
| 5 | |
| 6 // A WebFeature conceptually represents some particular web-exposed API | |
| 7 // or code path which can be used/triggered by a web page. | |
| 8 // For now feature IDs are opaque integers (just blink's UseCounter::Feature | |
|
Rick Byers
2017/05/23 19:51:49
nit: remove this sentence - with this definition t
lunalu1
2017/05/24 20:56:33
Done
| |
| 9 // enum). | |
| 10 // TODO(lunalu): Replace occurance of UseCounter::Feature by WebFeature in | |
| 11 // Blink. | |
| 12 // TODO(rbyers): Add CSS and animated CSS feature types (eg. by stealing | |
|
Rick Byers
2017/05/23 19:51:49
I think we agreed that in your new formulation, th
lunalu1
2017/05/24 20:56:33
Done
| |
| 13 // the top couple bits, or by making this a more sophisticated class). | |
| 14 enum class WebFeature : uint32_t { | |
|
Rick Byers
2017/05/23 19:51:49
Is there some reason to specify the uin32_t here?
lunalu1
2017/05/24 20:56:33
I suppose not, it is just that previously UseCount
| |
| 15 // Do not change assigned numbers of existing items: add new features | |
| 16 // to the end of the list. | |
| 17 kOBSOLETE_PageDestruction = 0, | |
| 18 kWorkerStart = 4, | |
| 19 kSharedWorkerStart = 5, | |
| 20 kUnprefixedIndexedDB = 9, | |
| 21 kOpenWebDatabase = 10, | |
| 22 kUnprefixedRequestAnimationFrame = 13, | |
| 23 kPrefixedRequestAnimationFrame = 14, | |
| 24 kContentSecurityPolicy = 15, | |
| 25 kContentSecurityPolicyReportOnly = 16, | |
| 26 kPrefixedTransitionEndEvent = 18, | |
| 27 kUnprefixedTransitionEndEvent = 19, | |
| 28 kPrefixedAndUnprefixedTransitionEndEvent = 20, | |
| 29 kAutoFocusAttribute = 21, | |
| 30 kDataListElement = 23, | |
| 31 kFormAttribute = 24, | |
| 32 kIncrementalAttribute = 25, | |
| 33 kInputTypeColor = 26, | |
| 34 kInputTypeDate = 27, | |
| 35 kInputTypeDateTimeFallback = 29, | |
| 36 kInputTypeDateTimeLocal = 30, | |
| 37 kInputTypeEmail = 31, | |
| 38 kInputTypeMonth = 32, | |
| 39 kInputTypeNumber = 33, | |
| 40 kInputTypeRange = 34, | |
| 41 kInputTypeSearch = 35, | |
| 42 kInputTypeTel = 36, | |
| 43 kInputTypeTime = 37, | |
| 44 kInputTypeURL = 38, | |
| 45 kInputTypeWeek = 39, | |
| 46 kInputTypeWeekFallback = 40, | |
| 47 kListAttribute = 41, | |
| 48 kMaxAttribute = 42, | |
| 49 kMinAttribute = 43, | |
| 50 kPatternAttribute = 44, | |
| 51 kPlaceholderAttribute = 45, | |
| 52 kPrefixedDirectoryAttribute = 47, | |
| 53 kRequiredAttribute = 49, | |
| 54 kStepAttribute = 51, | |
| 55 kPageVisits = 52, | |
| 56 kHTMLMarqueeElement = 53, | |
| 57 kReflection = 55, | |
| 58 kPrefixedStorageInfo = 57, | |
| 59 kDeprecatedFlexboxWebContent = 61, | |
| 60 kDeprecatedFlexboxChrome = 62, | |
| 61 kDeprecatedFlexboxChromeExtension = 63, | |
| 62 kUnprefixedPerformanceTimeline = 65, | |
| 63 kUnprefixedUserTiming = 67, | |
| 64 kWindowEvent = 69, | |
| 65 kContentSecurityPolicyWithBaseElement = 70, | |
| 66 kDocumentClear = 74, | |
| 67 kXMLDocument = 77, | |
| 68 kXSLProcessingInstruction = 78, | |
| 69 kXSLTProcessor = 79, | |
| 70 kSVGSwitchElement = 80, | |
| 71 kDocumentAll = 83, | |
| 72 kFormElement = 84, | |
| 73 kDemotedFormElement = 85, | |
| 74 kSVGAnimationElement = 90, | |
| 75 kLineClamp = 96, | |
| 76 kSubFrameBeforeUnloadRegistered = 97, | |
| 77 kSubFrameBeforeUnloadFired = 98, | |
| 78 kConsoleMarkTimeline = 102, | |
| 79 kDocumentCreateAttribute = 111, | |
| 80 kDocumentCreateAttributeNS = 112, | |
| 81 kDocumentXMLEncoding = 115, // Removed from DOM4. | |
| 82 kDocumentXMLStandalone = 116, // Removed from DOM4. | |
| 83 kDocumentXMLVersion = 117, // Removed from DOM4. | |
| 84 kNavigatorProductSub = 123, | |
| 85 kNavigatorVendor = 124, | |
| 86 kNavigatorVendorSub = 125, | |
| 87 kPrefixedAnimationEndEvent = 128, | |
| 88 kUnprefixedAnimationEndEvent = 129, | |
| 89 kPrefixedAndUnprefixedAnimationEndEvent = 130, | |
| 90 kPrefixedAnimationStartEvent = 131, | |
| 91 kUnprefixedAnimationStartEvent = 132, | |
| 92 kPrefixedAndUnprefixedAnimationStartEvent = 133, | |
| 93 kPrefixedAnimationIterationEvent = 134, | |
| 94 kUnprefixedAnimationIterationEvent = 135, | |
| 95 kPrefixedAndUnprefixedAnimationIterationEvent = 136, | |
| 96 kEventReturnValue = 137, // Legacy IE extension. | |
| 97 kSVGSVGElement = 138, | |
| 98 kDOMSubtreeModifiedEvent = 143, | |
| 99 kDOMNodeInsertedEvent = 144, | |
| 100 kDOMNodeRemovedEvent = 145, | |
| 101 kDOMNodeRemovedFromDocumentEvent = 146, | |
| 102 kDOMNodeInsertedIntoDocumentEvent = 147, | |
| 103 kDOMCharacterDataModifiedEvent = 148, | |
| 104 kDocumentAllLegacyCall = 150, | |
| 105 kGetMatchedCSSRules = 155, | |
| 106 kPrefixedAudioDecodedByteCount = 164, | |
| 107 kPrefixedVideoDecodedByteCount = 165, | |
| 108 kPrefixedVideoSupportsFullscreen = 166, | |
| 109 kPrefixedVideoDisplayingFullscreen = 167, | |
| 110 kPrefixedVideoEnterFullscreen = 168, | |
| 111 kPrefixedVideoExitFullscreen = 169, | |
| 112 kPrefixedVideoEnterFullScreen = 170, | |
| 113 kPrefixedVideoExitFullScreen = 171, | |
| 114 kPrefixedVideoDecodedFrameCount = 172, | |
| 115 kPrefixedVideoDroppedFrameCount = 173, | |
| 116 kPrefixedElementRequestFullscreen = 176, | |
| 117 kPrefixedElementRequestFullScreen = 177, | |
| 118 kBarPropLocationbar = 178, | |
| 119 kBarPropMenubar = 179, | |
| 120 kBarPropPersonalbar = 180, | |
| 121 kBarPropScrollbars = 181, | |
| 122 kBarPropStatusbar = 182, | |
| 123 kBarPropToolbar = 183, | |
| 124 kInputTypeEmailMultiple = 184, | |
| 125 kInputTypeEmailMaxLength = 185, | |
| 126 kInputTypeEmailMultipleMaxLength = 186, | |
| 127 kInputTypeText = 190, | |
| 128 kInputTypeTextMaxLength = 191, | |
| 129 kInputTypePassword = 192, | |
| 130 kInputTypePasswordMaxLength = 193, | |
| 131 kPrefixedPageVisibility = 196, | |
| 132 kDocumentBeforeUnloadRegistered = 200, | |
| 133 kDocumentBeforeUnloadFired = 201, | |
| 134 kDocumentUnloadRegistered = 202, | |
| 135 kDocumentUnloadFired = 203, | |
| 136 kSVGLocatableNearestViewportElement = 204, | |
| 137 kSVGLocatableFarthestViewportElement = 205, | |
| 138 kSVGPointMatrixTransform = 209, | |
| 139 kDOMFocusInOutEvent = 211, | |
| 140 kFileGetLastModifiedDate = 212, | |
| 141 kHTMLElementInnerText = 213, | |
| 142 kHTMLElementOuterText = 214, | |
| 143 kReplaceDocumentViaJavaScriptURL = 215, | |
| 144 kElementPrefixedMatchesSelector = 217, | |
| 145 kCSSStyleSheetRules = 219, | |
| 146 kCSSStyleSheetAddRule = 220, | |
| 147 kCSSStyleSheetRemoveRule = 221, | |
| 148 // The above items are available in M33 branch. | |
| 149 | |
| 150 kInitMessageEvent = 222, | |
| 151 kPrefixedDevicePixelRatioMediaFeature = 233, | |
| 152 kPrefixedMaxDevicePixelRatioMediaFeature = 234, | |
| 153 kPrefixedMinDevicePixelRatioMediaFeature = 235, | |
| 154 kPrefixedTransform3dMediaFeature = 237, | |
| 155 kPrefixedStorageQuota = 240, | |
| 156 kResetReferrerPolicy = 243, | |
| 157 // Caseinsensitivity dropped from specification. | |
| 158 kCaseInsensitiveAttrSelectorMatch = 244, | |
| 159 kFormNameAccessForImageElement = 246, | |
| 160 kFormNameAccessForPastNamesMap = 247, | |
| 161 kFormAssociationByParser = 248, | |
| 162 kSVGSVGElementInDocument = 250, | |
| 163 kSVGDocumentRootElement = 251, | |
| 164 kWorkerSubjectToCSP = 257, | |
| 165 kWorkerAllowedByChildBlockedByScript = 258, | |
| 166 kDeprecatedWebKitGradient = 260, | |
| 167 kDeprecatedWebKitLinearGradient = 261, | |
| 168 kDeprecatedWebKitRepeatingLinearGradient = 262, | |
| 169 kDeprecatedWebKitRadialGradient = 263, | |
| 170 kDeprecatedWebKitRepeatingRadialGradient = 264, | |
| 171 // The above items are available in M34 branch. | |
| 172 | |
| 173 kTextAutosizing = 274, | |
| 174 kHTMLAnchorElementPingAttribute = 276, | |
| 175 kSVGClassName = 279, | |
| 176 kHTMLMediaElementSeekToFragmentStart = 281, | |
| 177 kHTMLMediaElementPauseAtFragmentEnd = 282, | |
| 178 kPrefixedWindowURL = 283, | |
| 179 kWindowOrientation = 285, | |
| 180 kDocumentCaptureEvents = 287, | |
| 181 kDocumentReleaseEvents = 288, | |
| 182 kWindowCaptureEvents = 289, | |
| 183 kWindowReleaseEvents = 290, | |
| 184 kDocumentXPathCreateExpression = 295, | |
| 185 kDocumentXPathCreateNSResolver = 296, | |
| 186 kDocumentXPathEvaluate = 297, | |
| 187 kAnimationConstructorKeyframeListEffectObjectTiming = 300, | |
| 188 kAnimationConstructorKeyframeListEffectNoTiming = 302, | |
| 189 kPrefixedCancelAnimationFrame = 304, | |
| 190 kNamedNodeMapGetNamedItem = 306, | |
| 191 kNamedNodeMapSetNamedItem = 307, | |
| 192 kNamedNodeMapRemoveNamedItem = 308, | |
| 193 kNamedNodeMapItem = 309, | |
| 194 kNamedNodeMapGetNamedItemNS = 310, | |
| 195 kNamedNodeMapSetNamedItemNS = 311, | |
| 196 kNamedNodeMapRemoveNamedItemNS = 312, | |
| 197 kPrefixedDocumentIsFullscreen = 318, | |
| 198 kPrefixedDocumentCurrentFullScreenElement = 320, | |
| 199 kPrefixedDocumentCancelFullScreen = 321, | |
| 200 kPrefixedDocumentFullscreenEnabled = 322, | |
| 201 kPrefixedDocumentFullscreenElement = 323, | |
| 202 kPrefixedDocumentExitFullscreen = 324, | |
| 203 // The above items are available in M35 branch. | |
| 204 | |
| 205 kSVGForeignObjectElement = 325, | |
| 206 kSelectionSetPosition = 327, | |
| 207 kAnimationFinishEvent = 328, | |
| 208 kSVGSVGElementInXMLDocument = 329, | |
| 209 kEventSrcElement = 343, | |
| 210 kEventCancelBubble = 344, | |
| 211 kEventPath = 345, | |
| 212 kNodeIteratorDetach = 347, | |
| 213 kEventGetReturnValueTrue = 350, | |
| 214 kEventGetReturnValueFalse = 351, | |
| 215 kEventSetReturnValueTrue = 352, | |
| 216 kEventSetReturnValueFalse = 353, | |
| 217 kWindowOffscreenBuffering = 356, | |
| 218 kWindowDefaultStatus = 357, | |
| 219 kWindowDefaultstatus = 358, | |
| 220 kPrefixedTransitionEventConstructor = 361, | |
| 221 kPrefixedMutationObserverConstructor = 362, | |
| 222 kNotificationPermission = 371, | |
| 223 kRangeDetach = 372, | |
| 224 kPrefixedFileRelativePath = 386, | |
| 225 kDocumentCaretRangeFromPoint = 387, | |
| 226 kElementScrollIntoViewIfNeeded = 389, | |
| 227 kRangeExpand = 393, | |
| 228 kHTMLImageElementX = 396, | |
| 229 kHTMLImageElementY = 397, | |
| 230 kSelectionBaseNode = 400, | |
| 231 kSelectionBaseOffset = 401, | |
| 232 kSelectionExtentNode = 402, | |
| 233 kSelectionExtentOffset = 403, | |
| 234 kSelectionType = 404, | |
| 235 kSelectionModify = 405, | |
| 236 kSelectionSetBaseAndExtent = 406, | |
| 237 kSelectionEmpty = 407, | |
| 238 kVTTCue = 409, | |
| 239 kVTTCueRender = 410, | |
| 240 kVTTCueRenderVertical = 411, | |
| 241 kVTTCueRenderSnapToLinesFalse = 412, | |
| 242 kVTTCueRenderLineNotAuto = 413, | |
| 243 kVTTCueRenderPositionNot50 = 414, | |
| 244 kVTTCueRenderSizeNot100 = 415, | |
| 245 kVTTCueRenderAlignNotCenter = 416, | |
| 246 // The above items are available in M36 branch. | |
| 247 | |
| 248 kElementRequestPointerLock = 417, | |
| 249 kVTTCueRenderRtl = 418, | |
| 250 kPostMessageFromSecureToInsecure = 419, | |
| 251 kPostMessageFromInsecureToSecure = 420, | |
| 252 kDocumentExitPointerLock = 421, | |
| 253 kDocumentPointerLockElement = 422, | |
| 254 kPrefixedCursorZoomIn = 424, | |
| 255 kPrefixedCursorZoomOut = 425, | |
| 256 kTextEncoderConstructor = 429, | |
| 257 kTextEncoderEncode = 430, | |
| 258 kTextDecoderConstructor = 431, | |
| 259 kTextDecoderDecode = 432, | |
| 260 kFocusInOutEvent = 433, | |
| 261 kMouseEventMovementX = 434, | |
| 262 kMouseEventMovementY = 435, | |
| 263 kDocumentFonts = 440, | |
| 264 kMixedContentFormsSubmitted = 441, | |
| 265 kFormsSubmitted = 442, | |
| 266 kHTMLImports = 455, | |
| 267 kElementCreateShadowRoot = 456, | |
| 268 kDocumentRegisterElement = 457, | |
| 269 kEditingAppleInterchangeNewline = 458, | |
| 270 kEditingAppleConvertedSpace = 459, | |
| 271 kEditingApplePasteAsQuotation = 460, | |
| 272 kEditingAppleStyleSpanClass = 461, | |
| 273 kHTMLImportsAsyncAttribute = 463, | |
| 274 kXMLHttpRequestSynchronous = 465, | |
| 275 kCSSSelectorPseudoUnresolved = 466, | |
| 276 kCSSSelectorPseudoShadow = 467, | |
| 277 kCSSSelectorPseudoContent = 468, | |
| 278 kCSSSelectorPseudoHost = 469, | |
| 279 kCSSSelectorPseudoHostContext = 470, | |
| 280 kCSSDeepCombinator = 471, | |
| 281 // The above items are available in M37 branch. | |
| 282 | |
| 283 kUseAsm = 473, | |
| 284 kDOMWindowOpen = 475, | |
| 285 kDOMWindowOpenFeatures = 476, | |
| 286 kAspectRatioFlexItem = 479, | |
| 287 kDetailsElement = 480, | |
| 288 kDialogElement = 481, | |
| 289 kMapElement = 482, | |
| 290 kMeterElement = 483, | |
| 291 kProgressElement = 484, | |
| 292 kWheelEventWheelDeltaX = 491, | |
| 293 kWheelEventWheelDeltaY = 492, | |
| 294 kWheelEventWheelDelta = 493, | |
| 295 kSendBeacon = 494, | |
| 296 kSendBeaconQuotaExceeded = 495, | |
| 297 kSVGSMILElementInDocument = 501, | |
| 298 kMouseEventOffsetX = 502, | |
| 299 kMouseEventOffsetY = 503, | |
| 300 kMouseEventX = 504, | |
| 301 kMouseEventY = 505, | |
| 302 kMouseEventFromElement = 506, | |
| 303 kMouseEventToElement = 507, | |
| 304 kRequestFileSystem = 508, | |
| 305 kRequestFileSystemWorker = 509, | |
| 306 kRequestFileSystemSyncWorker = 510, | |
| 307 kSVGStyleElementTitle = 519, | |
| 308 kPictureSourceSrc = 520, | |
| 309 // The above items are available in M38 branch. | |
| 310 | |
| 311 kPicture = 521, | |
| 312 kSizes = 522, | |
| 313 kSrcsetXDescriptor = 523, | |
| 314 kSrcsetWDescriptor = 524, | |
| 315 kSelectionContainsNode = 525, | |
| 316 kXMLExternalResourceLoad = 529, | |
| 317 kMixedContentPrivateHostnameInPublicHostname = 530, | |
| 318 kLegacyProtocolEmbeddedAsSubresource = 531, | |
| 319 kRequestedSubresourceWithEmbeddedCredentials = 532, | |
| 320 kNotificationCreated = 533, | |
| 321 kNotificationClosed = 534, | |
| 322 kNotificationPermissionRequested = 535, | |
| 323 kConsoleTimeline = 538, | |
| 324 kConsoleTimelineEnd = 539, | |
| 325 kSRIElementWithMatchingIntegrityAttribute = 540, | |
| 326 kSRIElementWithNonMatchingIntegrityAttribute = 541, | |
| 327 kSRIElementWithUnparsableIntegrityAttribute = 542, | |
| 328 kV8Animation_StartTime_AttributeGetter = 545, | |
| 329 kV8Animation_StartTime_AttributeSetter = 546, | |
| 330 kV8Animation_CurrentTime_AttributeGetter = 547, | |
| 331 kV8Animation_CurrentTime_AttributeSetter = 548, | |
| 332 kV8Animation_PlaybackRate_AttributeGetter = 549, | |
| 333 kV8Animation_PlaybackRate_AttributeSetter = 550, | |
| 334 kV8Animation_PlayState_AttributeGetter = 551, | |
| 335 kV8Animation_Finish_Method = 552, | |
| 336 kV8Animation_Play_Method = 553, | |
| 337 kV8Animation_Pause_Method = 554, | |
| 338 kV8Animation_Reverse_Method = 555, | |
| 339 // The above items are available in M39 branch. | |
| 340 | |
| 341 kBreakIterator = 556, | |
| 342 kScreenOrientationAngle = 557, | |
| 343 kScreenOrientationType = 558, | |
| 344 kScreenOrientationLock = 559, | |
| 345 kScreenOrientationUnlock = 560, | |
| 346 kGeolocationSecureOrigin = 561, | |
| 347 kGeolocationInsecureOrigin = 562, | |
| 348 kNotificationSecureOrigin = 563, | |
| 349 kNotificationInsecureOrigin = 564, | |
| 350 kNotificationShowEvent = 565, | |
| 351 kSVGTransformListConsolidate = 569, | |
| 352 kSVGAnimatedTransformListBaseVal = 570, | |
| 353 kQuotedAnimationName = 571, | |
| 354 kQuotedKeyframesRule = 572, | |
| 355 kSrcsetDroppedCandidate = 573, | |
| 356 kWindowPostMessage = 574, | |
| 357 kRenderRuby = 576, | |
| 358 kScriptElementWithInvalidTypeHasSrc = 578, | |
| 359 kXMLHttpRequestSynchronousInNonWorkerOutsideBeforeUnload = 581, | |
| 360 kCSSSelectorPseudoScrollbar = 582, | |
| 361 kCSSSelectorPseudoScrollbarButton = 583, | |
| 362 kCSSSelectorPseudoScrollbarThumb = 584, | |
| 363 kCSSSelectorPseudoScrollbarTrack = 585, | |
| 364 kCSSSelectorPseudoScrollbarTrackPiece = 586, | |
| 365 kLangAttribute = 587, | |
| 366 kLangAttributeOnHTML = 588, | |
| 367 kLangAttributeOnBody = 589, | |
| 368 kLangAttributeDoesNotMatchToUILocale = 590, | |
| 369 kInputTypeSubmit = 591, | |
| 370 kInputTypeSubmitWithValue = 592, | |
| 371 // The above items are available in M40 branch. | |
| 372 | |
| 373 kSetReferrerPolicy = 593, | |
| 374 kMouseEventWhich = 595, | |
| 375 kUIEventWhich = 598, | |
| 376 kTextWholeText = 599, | |
| 377 kNotificationCloseEvent = 603, | |
| 378 kStyleMedia = 606, | |
| 379 kStyleMediaType = 607, | |
| 380 kStyleMediaMatchMedium = 608, | |
| 381 kMixedContentPresent = 609, | |
| 382 kMixedContentBlockable = 610, | |
| 383 kMixedContentAudio = 611, | |
| 384 kMixedContentDownload = 612, | |
| 385 kMixedContentFavicon = 613, | |
| 386 kMixedContentImage = 614, | |
| 387 kMixedContentInternal = 615, | |
| 388 kMixedContentPlugin = 616, | |
| 389 kMixedContentPrefetch = 617, | |
| 390 kMixedContentVideo = 618, | |
| 391 kCSSSelectorPseudoFullScreenAncestor = 628, | |
| 392 kCSSSelectorPseudoFullScreen = 629, | |
| 393 kWebKitCSSMatrix = 630, | |
| 394 kAudioContextCreateAnalyser = 631, | |
| 395 kAudioContextCreateBiquadFilter = 632, | |
| 396 kAudioContextCreateBufferSource = 633, | |
| 397 kAudioContextCreateChannelMerger = 634, | |
| 398 kAudioContextCreateChannelSplitter = 635, | |
| 399 kAudioContextCreateConvolver = 636, | |
| 400 kAudioContextCreateDelay = 637, | |
| 401 kAudioContextCreateDynamicsCompressor = 638, | |
| 402 kAudioContextCreateGain = 639, | |
| 403 kAudioContextCreateMediaElementSource = 640, | |
| 404 kAudioContextCreateMediaStreamDestination = 641, | |
| 405 kAudioContextCreateMediaStreamSource = 642, | |
| 406 kAudioContextCreateOscillator = 643, | |
| 407 kAudioContextCreatePeriodicWave = 645, | |
| 408 kAudioContextCreateScriptProcessor = 646, | |
| 409 kAudioContextCreateStereoPanner = 647, | |
| 410 kAudioContextCreateWaveShaper = 648, | |
| 411 kAudioContextDecodeAudioData = 649, | |
| 412 kAudioContextResume = 650, | |
| 413 kAudioContextSuspend = 651, | |
| 414 kMixedContentInNonHTTPSFrameThatRestrictsMixedContent = 661, | |
| 415 kMixedContentInSecureFrameThatDoesNotRestrictMixedContent = 662, | |
| 416 kMixedContentWebSocket = 663, | |
| 417 kSyntheticKeyframesInCompositedCSSAnimation = 664, | |
| 418 kMixedContentFormPresent = 665, | |
| 419 kGetUserMediaInsecureOrigin = 666, | |
| 420 kGetUserMediaSecureOrigin = 667, | |
| 421 // The above items are available in M41 branch. | |
| 422 | |
| 423 kDeviceMotionInsecureOrigin = 668, | |
| 424 kDeviceMotionSecureOrigin = 669, | |
| 425 kDeviceOrientationInsecureOrigin = 670, | |
| 426 kDeviceOrientationSecureOrigin = 671, | |
| 427 kSandboxViaIFrame = 672, | |
| 428 kSandboxViaCSP = 673, | |
| 429 kBlockedSniffingImageToScript = 674, | |
| 430 kFetch = 675, | |
| 431 kFetchBodyStream = 676, | |
| 432 kXMLHttpRequestAsynchronous = 677, | |
| 433 kWhiteSpacePreFromXMLSpace = 679, | |
| 434 kWhiteSpaceNowrapFromXMLSpace = 680, | |
| 435 kSVGSVGElementForceRedraw = 685, | |
| 436 kSVGSVGElementSuspendRedraw = 686, | |
| 437 kSVGSVGElementUnsuspendRedraw = 687, | |
| 438 kSVGSVGElementUnsuspendRedrawAll = 688, | |
| 439 kAudioContextClose = 689, | |
| 440 kCSSZoomNotEqualToOne = 691, | |
| 441 // The above items are available in M42 branch. | |
| 442 | |
| 443 kClientRectListItem = 694, | |
| 444 kWindowClientInformation = 695, | |
| 445 kWindowFind = 696, | |
| 446 kWindowScreenLeft = 697, | |
| 447 kWindowScreenTop = 698, | |
| 448 kV8Animation_Cancel_Method = 699, | |
| 449 kV8Animation_Onfinish_AttributeGetter = 700, | |
| 450 kV8Animation_Onfinish_AttributeSetter = 701, | |
| 451 kV8Window_WebKitAnimationEvent_ConstructorGetter = 707, | |
| 452 kCryptoGetRandomValues = 710, | |
| 453 kSubtleCryptoEncrypt = 711, | |
| 454 kSubtleCryptoDecrypt = 712, | |
| 455 kSubtleCryptoSign = 713, | |
| 456 kSubtleCryptoVerify = 714, | |
| 457 kSubtleCryptoDigest = 715, | |
| 458 kSubtleCryptoGenerateKey = 716, | |
| 459 kSubtleCryptoImportKey = 717, | |
| 460 kSubtleCryptoExportKey = 718, | |
| 461 kSubtleCryptoDeriveBits = 719, | |
| 462 kSubtleCryptoDeriveKey = 720, | |
| 463 kSubtleCryptoWrapKey = 721, | |
| 464 kSubtleCryptoUnwrapKey = 722, | |
| 465 kCryptoAlgorithmAesCbc = 723, | |
| 466 kCryptoAlgorithmHmac = 724, | |
| 467 kCryptoAlgorithmRsaSsaPkcs1v1_5 = 725, | |
| 468 kCryptoAlgorithmSha1 = 726, | |
| 469 kCryptoAlgorithmSha256 = 727, | |
| 470 kCryptoAlgorithmSha384 = 728, | |
| 471 kCryptoAlgorithmSha512 = 729, | |
| 472 kCryptoAlgorithmAesGcm = 730, | |
| 473 kCryptoAlgorithmRsaOaep = 731, | |
| 474 kCryptoAlgorithmAesCtr = 732, | |
| 475 kCryptoAlgorithmAesKw = 733, | |
| 476 kCryptoAlgorithmRsaPss = 734, | |
| 477 kCryptoAlgorithmEcdsa = 735, | |
| 478 kCryptoAlgorithmEcdh = 736, | |
| 479 kCryptoAlgorithmHkdf = 737, | |
| 480 kCryptoAlgorithmPbkdf2 = 738, | |
| 481 kDocumentSetDomain = 739, | |
| 482 kUpgradeInsecureRequestsEnabled = 740, | |
| 483 kUpgradeInsecureRequestsUpgradedRequest = 741, | |
| 484 kDocumentDesignMode = 742, | |
| 485 kGlobalCacheStorage = 743, | |
| 486 kNetInfo = 744, | |
| 487 kBackgroundSync = 745, | |
| 488 kLegacyConst = 748, | |
| 489 kV8Permissions_Query_Method = 750, | |
| 490 // The above items are available in M43 branch. | |
| 491 | |
| 492 kV8HTMLInputElement_Autocapitalize_AttributeGetter = 754, | |
| 493 kV8HTMLInputElement_Autocapitalize_AttributeSetter = 755, | |
| 494 kV8HTMLTextAreaElement_Autocapitalize_AttributeGetter = 756, | |
| 495 kV8HTMLTextAreaElement_Autocapitalize_AttributeSetter = 757, | |
| 496 kSVGHrefBaseVal = 758, | |
| 497 kSVGHrefAnimVal = 759, | |
| 498 kV8CSSRuleList_Item_Method = 760, | |
| 499 kV8MediaList_Item_Method = 761, | |
| 500 kV8StyleSheetList_Item_Method = 762, | |
| 501 kStyleSheetListAnonymousNamedGetter = 763, | |
| 502 kAutocapitalizeAttribute = 764, | |
| 503 kFullscreenSecureOrigin = 765, | |
| 504 kFullscreenInsecureOrigin = 766, | |
| 505 kDialogInSandboxedContext = 767, | |
| 506 kSVGSMILAnimationInImageRegardlessOfCache = 768, | |
| 507 kPerformanceFrameTiming = 772, | |
| 508 kV8Element_Animate_Method = 773, | |
| 509 // The above items are available in M44 branch. | |
| 510 | |
| 511 kV8SVGSVGElement_GetElementById_Method = 778, | |
| 512 kElementCreateShadowRootMultiple = 779, | |
| 513 kV8MessageChannel_Constructor = 780, | |
| 514 kV8MessagePort_PostMessage_Method = 781, | |
| 515 kV8MessagePort_Start_Method = 782, | |
| 516 kV8MessagePort_Close_Method = 783, | |
| 517 kMessagePortsTransferred = 784, | |
| 518 kCSSKeyframesRuleAnonymousIndexedGetter = 785, | |
| 519 kV8Screen_AvailLeft_AttributeGetter = 786, | |
| 520 kV8Screen_AvailTop_AttributeGetter = 787, | |
| 521 kV8SVGFEConvolveMatrixElement_PreserveAlpha_AttributeGetter = 791, | |
| 522 kV8SVGStyleElement_Disabled_AttributeGetter = 798, | |
| 523 kV8SVGStyleElement_Disabled_AttributeSetter = 799, | |
| 524 kInputTypeFileSecureOrigin = 801, | |
| 525 kInputTypeFileInsecureOrigin = 802, | |
| 526 kElementAttachShadow = 804, | |
| 527 kV8SecurityPolicyViolationEvent_DocumentURI_AttributeGetter = 806, | |
| 528 kV8SecurityPolicyViolationEvent_BlockedURI_AttributeGetter = 807, | |
| 529 kV8SecurityPolicyViolationEvent_StatusCode_AttributeGetter = 808, | |
| 530 kHTMLLinkElementDisabled = 809, | |
| 531 kV8HTMLLinkElement_Disabled_AttributeGetter = 810, | |
| 532 kV8HTMLLinkElement_Disabled_AttributeSetter = 811, | |
| 533 kV8HTMLStyleElement_Disabled_AttributeGetter = 812, | |
| 534 kV8HTMLStyleElement_Disabled_AttributeSetter = 813, | |
| 535 kV8DOMError_Constructor = 816, | |
| 536 kV8DOMError_Name_AttributeGetter = 817, | |
| 537 kV8DOMError_Message_AttributeGetter = 818, | |
| 538 kTextInputFired = 830, | |
| 539 kV8TextEvent_Data_AttributeGetter = 831, | |
| 540 kV8TextEvent_InitTextEvent_Method = 832, | |
| 541 kClientHintsDPR = 835, | |
| 542 kClientHintsResourceWidth = 836, | |
| 543 kClientHintsViewportWidth = 837, | |
| 544 kSRIElementIntegrityAttributeButIneligible = 838, | |
| 545 kFormDataAppendNull = 843, | |
| 546 kNonHTMLElementSetAttributeNodeFromHTMLDocumentNameNotLowercase = 845, | |
| 547 kNavigatorVibrate = 850, | |
| 548 kNavigatorVibrateSubFrame = 851, | |
| 549 kV8XPathEvaluator_Constructor = 853, | |
| 550 kV8XPathEvaluator_CreateExpression_Method = 854, | |
| 551 kV8XPathEvaluator_CreateNSResolver_Method = 855, | |
| 552 kV8XPathEvaluator_Evaluate_Method = 856, | |
| 553 kRequestMIDIAccess = 857, | |
| 554 kV8MouseEvent_LayerX_AttributeGetter = 858, | |
| 555 kV8MouseEvent_LayerY_AttributeGetter = 859, | |
| 556 kInnerTextWithShadowTree = 860, | |
| 557 kSelectionToStringWithShadowTree = 861, | |
| 558 kWindowFindWithShadowTree = 862, | |
| 559 kV8CompositionEvent_InitCompositionEvent_Method = 863, | |
| 560 kV8CustomEvent_InitCustomEvent_Method = 864, | |
| 561 kV8DeviceMotionEvent_InitDeviceMotionEvent_Method = 865, | |
| 562 kV8DeviceOrientationEvent_InitDeviceOrientationEvent_Method = 866, | |
| 563 kV8Event_InitEvent_Method = 867, | |
| 564 kV8KeyboardEvent_InitKeyboardEvent_Method = 868, | |
| 565 kV8MouseEvent_InitMouseEvent_Method = 869, | |
| 566 kV8MutationEvent_InitMutationEvent_Method = 870, | |
| 567 kV8StorageEvent_InitStorageEvent_Method = 871, | |
| 568 kV8UIEvent_InitUIEvent_Method = 873, | |
| 569 kV8Document_CreateTouch_Method = 874, | |
| 570 kRequestFileSystemNonWebbyOrigin = 876, | |
| 571 kV8MemoryInfo_TotalJSHeapSize_AttributeGetter = 879, | |
| 572 kV8MemoryInfo_UsedJSHeapSize_AttributeGetter = 880, | |
| 573 kV8MemoryInfo_JSHeapSizeLimit_AttributeGetter = 881, | |
| 574 kV8Performance_Timing_AttributeGetter = 882, | |
| 575 kV8Performance_Navigation_AttributeGetter = 883, | |
| 576 kV8Performance_Memory_AttributeGetter = 884, | |
| 577 kV8SharedWorker_WorkerStart_AttributeGetter = 885, | |
| 578 // The above items are available in M45 branch. | |
| 579 | |
| 580 kHTMLMediaElementPreloadNone = 892, | |
| 581 kHTMLMediaElementPreloadMetadata = 893, | |
| 582 kHTMLMediaElementPreloadAuto = 894, | |
| 583 kHTMLMediaElementPreloadDefault = 895, | |
| 584 kMixedContentBlockableAllowed = 896, | |
| 585 kPseudoBeforeAfterForInputElement = 897, | |
| 586 kV8Permissions_Revoke_Method = 898, | |
| 587 kLinkRelDnsPrefetch = 899, | |
| 588 kLinkRelPreconnect = 900, | |
| 589 kLinkRelPreload = 901, | |
| 590 kLinkHeaderDnsPrefetch = 902, | |
| 591 kLinkHeaderPreconnect = 903, | |
| 592 kClientHintsMetaAcceptCH = 904, | |
| 593 kHTMLElementDeprecatedWidth = 905, | |
| 594 kClientHintsContentDPR = 906, | |
| 595 kElementAttachShadowOpen = 907, | |
| 596 kElementAttachShadowClosed = 908, | |
| 597 kAudioParamSetValueAtTime = 909, | |
| 598 kAudioParamLinearRampToValueAtTime = 910, | |
| 599 kAudioParamExponentialRampToValueAtTime = 911, | |
| 600 kAudioParamSetTargetAtTime = 912, | |
| 601 kAudioParamSetValueCurveAtTime = 913, | |
| 602 kAudioParamCancelScheduledValues = 914, | |
| 603 kV8Permissions_Request_Method = 915, | |
| 604 kLinkRelPrefetch = 917, | |
| 605 kLinkRelPrerender = 918, | |
| 606 kLinkRelNext = 919, | |
| 607 kCSSValuePrefixedMinContent = 921, | |
| 608 kCSSValuePrefixedMaxContent = 922, | |
| 609 kCSSValuePrefixedFitContent = 923, | |
| 610 kCSSValuePrefixedFillAvailable = 924, | |
| 611 kPresentationDefaultRequest = 926, | |
| 612 kPresentationAvailabilityChangeEventListener = 927, | |
| 613 kPresentationRequestConstructor = 928, | |
| 614 kPresentationRequestStart = 929, | |
| 615 kPresentationRequestReconnect = 930, | |
| 616 kPresentationRequestGetAvailability = 931, | |
| 617 kPresentationRequestConnectionAvailableEventListener = 932, | |
| 618 kPresentationConnectionTerminate = 933, | |
| 619 kPresentationConnectionSend = 934, | |
| 620 kPresentationConnectionMessageEventListener = 936, | |
| 621 kCSSAnimationsStackedNeutralKeyframe = 937, | |
| 622 kReadingCheckedInClickHandler = 938, | |
| 623 kFlexboxIntrinsicSizeAlgorithmIsDifferent = 939, | |
| 624 // The above items are available in M46 branch. | |
| 625 | |
| 626 kHTMLImportsHasStyleSheets = 940, | |
| 627 kNetInfoType = 946, | |
| 628 kNetInfoDownlinkMax = 947, | |
| 629 kNetInfoOnChange = 948, | |
| 630 kNetInfoOnTypeChange = 949, | |
| 631 kV8Window_Alert_Method = 950, | |
| 632 kV8Window_Confirm_Method = 951, | |
| 633 kV8Window_Prompt_Method = 952, | |
| 634 kV8Window_Print_Method = 953, | |
| 635 kV8Window_RequestIdleCallback_Method = 954, | |
| 636 kFlexboxPercentagePaddingVertical = 955, | |
| 637 kFlexboxPercentageMarginVertical = 956, | |
| 638 kBackspaceNavigatedBack = 957, | |
| 639 kBackspaceNavigatedBackAfterFormInteraction = 958, | |
| 640 kCSPSourceWildcardWouldMatchExactHost = 959, | |
| 641 kCredentialManagerGet = 960, | |
| 642 kCredentialManagerGetWithUI = 961, | |
| 643 kCredentialManagerGetWithoutUI = 962, | |
| 644 kCredentialManagerStore = 963, | |
| 645 kCredentialManagerRequireUserMediation = 964, | |
| 646 // The above items are available in M47 branch. | |
| 647 | |
| 648 kBlockableMixedContentInSubframeBlocked = 966, | |
| 649 kAddEventListenerThirdArgumentIsObject = 967, | |
| 650 kRemoveEventListenerThirdArgumentIsObject = 968, | |
| 651 kCSSAtRuleCharset = 969, | |
| 652 kCSSAtRuleFontFace = 970, | |
| 653 kCSSAtRuleImport = 971, | |
| 654 kCSSAtRuleKeyframes = 972, | |
| 655 kCSSAtRuleMedia = 973, | |
| 656 kCSSAtRuleNamespace = 974, | |
| 657 kCSSAtRulePage = 975, | |
| 658 kCSSAtRuleSupports = 976, | |
| 659 kCSSAtRuleViewport = 977, | |
| 660 kCSSAtRuleWebkitKeyframes = 978, | |
| 661 kV8HTMLFieldSetElement_Elements_AttributeGetter = 979, | |
| 662 kHTMLMediaElementPreloadForcedNone = 980, | |
| 663 kExternalAddSearchProvider = 981, | |
| 664 kExternalIsSearchProviderInstalled = 982, | |
| 665 kV8Permissions_RequestAll_Method = 983, | |
| 666 kDeviceOrientationAbsoluteInsecureOrigin = 987, | |
| 667 kDeviceOrientationAbsoluteSecureOrigin = 988, | |
| 668 kFontFaceConstructor = 989, | |
| 669 kServiceWorkerControlledPage = 990, | |
| 670 kMeterElementWithMeterAppearance = 993, | |
| 671 kMeterElementWithNoneAppearance = 994, | |
| 672 kSelectionAnchorNode = 997, | |
| 673 kSelectionAnchorOffset = 998, | |
| 674 kSelectionFocusNode = 999, | |
| 675 kSelectionFocusOffset = 1000, | |
| 676 kSelectionIsCollapsed = 1001, | |
| 677 kSelectionRangeCount = 1002, | |
| 678 kSelectionGetRangeAt = 1003, | |
| 679 kSelectionAddRange = 1004, | |
| 680 kSelectionRemoveAllRanges = 1005, | |
| 681 kSelectionCollapse = 1006, | |
| 682 kSelectionCollapseToStart = 1007, | |
| 683 kSelectionCollapseToEnd = 1008, | |
| 684 kSelectionExtend = 1009, | |
| 685 kSelectionSelectAllChildren = 1010, | |
| 686 kSelectionDeleteDromDocument = 1011, | |
| 687 kSelectionDOMString = 1012, | |
| 688 kInputTypeRangeVerticalAppearance = 1013, | |
| 689 // The above items are available in M48 branch. | |
| 690 | |
| 691 kCSSFilterReference = 1014, | |
| 692 kCSSFilterGrayscale = 1015, | |
| 693 kCSSFilterSepia = 1016, | |
| 694 kCSSFilterSaturate = 1017, | |
| 695 kCSSFilterHueRotate = 1018, | |
| 696 kCSSFilterInvert = 1019, | |
| 697 kCSSFilterOpacity = 1020, | |
| 698 kCSSFilterBrightness = 1021, | |
| 699 kCSSFilterContrast = 1022, | |
| 700 kCSSFilterBlur = 1023, | |
| 701 kCSSFilterDropShadow = 1024, | |
| 702 kBackgroundSyncRegister = 1025, | |
| 703 kExecCommandOnInputOrTextarea = 1027, | |
| 704 kV8History_ScrollRestoration_AttributeGetter = 1028, | |
| 705 kV8History_ScrollRestoration_AttributeSetter = 1029, | |
| 706 kSVG1DOMFilter = 1030, | |
| 707 kOfflineAudioContextStartRendering = 1031, | |
| 708 kOfflineAudioContextSuspend = 1032, | |
| 709 kOfflineAudioContextResume = 1033, | |
| 710 kSVG1DOMPaintServer = 1035, | |
| 711 kSVGSVGElementFragmentSVGView = 1036, | |
| 712 kSVGSVGElementFragmentSVGViewElement = 1037, | |
| 713 kPresentationConnectionClose = 1038, | |
| 714 kSVG1DOMShape = 1039, | |
| 715 kSVG1DOMText = 1040, | |
| 716 kRTCPeerConnectionConstructorConstraints = 1041, | |
| 717 kRTCPeerConnectionConstructorCompliant = 1042, | |
| 718 kRTCPeerConnectionCreateOfferLegacyFailureCallback = 1044, | |
| 719 kRTCPeerConnectionCreateOfferLegacyConstraints = 1045, | |
| 720 kRTCPeerConnectionCreateOfferLegacyOfferOptions = 1046, | |
| 721 kRTCPeerConnectionCreateOfferLegacyCompliant = 1047, | |
| 722 kRTCPeerConnectionCreateAnswerLegacyFailureCallback = 1049, | |
| 723 kRTCPeerConnectionCreateAnswerLegacyConstraints = 1050, | |
| 724 kRTCPeerConnectionCreateAnswerLegacyCompliant = 1051, | |
| 725 kRTCPeerConnectionSetLocalDescriptionLegacyNoSuccessCallback = 1052, | |
| 726 kRTCPeerConnectionSetLocalDescriptionLegacyNoFailureCallback = 1053, | |
| 727 kRTCPeerConnectionSetLocalDescriptionLegacyCompliant = 1054, | |
| 728 kRTCPeerConnectionSetRemoteDescriptionLegacyNoSuccessCallback = 1055, | |
| 729 kRTCPeerConnectionSetRemoteDescriptionLegacyNoFailureCallback = 1056, | |
| 730 kRTCPeerConnectionSetRemoteDescriptionLegacyCompliant = 1057, | |
| 731 kRTCPeerConnectionGetStatsLegacyNonCompliant = 1058, | |
| 732 kNodeFilterIsFunction = 1059, | |
| 733 kNodeFilterIsObject = 1060, | |
| 734 kCSSSelectorInternalPseudoListBox = 1062, | |
| 735 kCSSSelectorInternalMediaControlsOverlayCastButton = 1064, | |
| 736 kCSSSelectorInternalPseudoSpatialNavigationFocus = 1065, | |
| 737 kSameOriginTextScript = 1066, | |
| 738 kSameOriginApplicationScript = 1067, | |
| 739 kSameOriginOtherScript = 1068, | |
| 740 kCrossOriginTextScript = 1069, | |
| 741 kCrossOriginApplicationScript = 1070, | |
| 742 kCrossOriginOtherScript = 1071, | |
| 743 kSVG1DOMSVGTests = 1072, | |
| 744 kDisableRemotePlaybackAttribute = 1074, | |
| 745 kV8SloppyMode = 1075, | |
| 746 kV8StrictMode = 1076, | |
| 747 kV8StrongMode = 1077, | |
| 748 kAudioNodeConnectToAudioNode = 1078, | |
| 749 kAudioNodeConnectToAudioParam = 1079, | |
| 750 kAudioNodeDisconnectFromAudioNode = 1080, | |
| 751 kAudioNodeDisconnectFromAudioParam = 1081, | |
| 752 kV8CSSFontFaceRule_Style_AttributeGetter = 1082, | |
| 753 kSelectionCollapseNull = 1083, | |
| 754 kSelectionSetBaseAndExtentNull = 1084, | |
| 755 kV8SVGSVGElement_CreateSVGNumber_Method = 1085, | |
| 756 kV8SVGSVGElement_CreateSVGLength_Method = 1086, | |
| 757 kV8SVGSVGElement_CreateSVGAngle_Method = 1087, | |
| 758 kV8SVGSVGElement_CreateSVGPoint_Method = 1088, | |
| 759 kV8SVGSVGElement_CreateSVGMatrix_Method = 1089, | |
| 760 kV8SVGSVGElement_CreateSVGRect_Method = 1090, | |
| 761 kV8SVGSVGElement_CreateSVGTransform_Method = 1091, | |
| 762 kV8SVGSVGElement_CreateSVGTransformFromMatrix_Method = 1092, | |
| 763 kFormNameAccessForNonDescendantImageElement = 1093, | |
| 764 kV8RegExpPrototypeStickyGetter = 1096, | |
| 765 kV8RegExpPrototypeToString = 1097, | |
| 766 kV8InputDeviceCapabilities_FiresTouchEvents_AttributeGetter = 1098, | |
| 767 kDataElement = 1099, | |
| 768 kTimeElement = 1100, | |
| 769 kSVG1DOMUriReference = 1101, | |
| 770 kSVG1DOMZoomAndPan = 1102, | |
| 771 kV8SVGGraphicsElement_Transform_AttributeGetter = 1103, | |
| 772 kMenuItemElement = 1104, | |
| 773 kMenuItemCloseTag = 1105, | |
| 774 kSVG1DOMMarkerElement = 1106, | |
| 775 kSVG1DOMUseElement = 1107, | |
| 776 kSVG1DOMMaskElement = 1108, | |
| 777 kV8SVGAElement_Target_AttributeGetter = 1109, | |
| 778 kV8SVGClipPathElement_ClipPathUnits_AttributeGetter = 1110, | |
| 779 kSVG1DOMFitToViewBox = 1111, | |
| 780 kSVG1DOMSVGElement = 1114, | |
| 781 kSVG1DOMImageElement = 1115, | |
| 782 kSVG1DOMForeignObjectElement = 1116, | |
| 783 kAudioContextCreateIIRFilter = 1117, | |
| 784 // The above items are available in M49 branch | |
| 785 | |
| 786 kCSSSelectorPseudoSlotted = 1118, | |
| 787 kMediaDevicesEnumerateDevices = 1119, | |
| 788 kNonSecureSharedWorkerAccessedFromSecureContext = 1120, | |
| 789 kSecureSharedWorkerAccessedFromNonSecureContext = 1121, | |
| 790 kEventComposedPath = 1123, | |
| 791 kLinkHeaderPreload = 1124, | |
| 792 kMouseWheelEvent = 1125, | |
| 793 kWheelEvent = 1126, | |
| 794 kMouseWheelAndWheelEvent = 1127, | |
| 795 kBodyScrollsInAdditionToViewport = 1128, | |
| 796 kDocumentDesignModeEnabeld = 1129, | |
| 797 kContentEditableTrue = 1130, | |
| 798 kContentEditableTrueOnHTML = 1131, | |
| 799 kContentEditablePlainTextOnly = 1132, | |
| 800 kV8RegExpPrototypeUnicodeGetter = 1133, | |
| 801 kV8IntlV8Parse = 1134, | |
| 802 kV8IntlPattern = 1135, | |
| 803 kV8IntlResolved = 1136, | |
| 804 kV8PromiseChain = 1137, | |
| 805 kV8PromiseAccept = 1138, | |
| 806 kV8PromiseDefer = 1139, | |
| 807 kEventComposed = 1140, | |
| 808 kGeolocationInsecureOriginIframe = 1141, | |
| 809 kGeolocationSecureOriginIframe = 1142, | |
| 810 kRequestMIDIAccessIframe = 1143, | |
| 811 kGetUserMediaInsecureOriginIframe = 1144, | |
| 812 kGetUserMediaSecureOriginIframe = 1145, | |
| 813 kElementRequestPointerLockIframe = 1146, | |
| 814 kNotificationAPIInsecureOriginIframe = 1147, | |
| 815 kNotificationAPISecureOriginIframe = 1148, | |
| 816 kWebSocket = 1149, | |
| 817 kMediaStreamConstraintsNameValue = 1150, | |
| 818 kMediaStreamConstraintsFromDictionary = 1151, | |
| 819 kMediaStreamConstraintsConformant = 1152, | |
| 820 kCSSSelectorIndirectAdjacent = 1153, | |
| 821 kCreateImageBitmap = 1156, | |
| 822 kPresentationConnectionConnectEventListener = 1157, | |
| 823 kPresentationConnectionCloseEventListener = 1158, | |
| 824 kPresentationConnectionTerminateEventListener = 1159, | |
| 825 kDocumentCreateEventAnimationEvent = 1162, | |
| 826 kDocumentCreateEventBeforeUnloadEvent = 1166, | |
| 827 kDocumentCreateEventCompositionEvent = 1168, | |
| 828 kDocumentCreateEventDragEvent = 1169, | |
| 829 kDocumentCreateEventErrorEvent = 1170, | |
| 830 kDocumentCreateEventFocusEvent = 1171, | |
| 831 kDocumentCreateEventHashChangeEvent = 1172, | |
| 832 kDocumentCreateEventMutationEvent = 1173, | |
| 833 kDocumentCreateEventPageTransitionEvent = 1174, | |
| 834 kDocumentCreateEventPopStateEvent = 1176, | |
| 835 kDocumentCreateEventTextEvent = 1182, | |
| 836 kDocumentCreateEventTransitionEvent = 1183, | |
| 837 kDocumentCreateEventWheelEvent = 1184, | |
| 838 kDocumentCreateEventTrackEvent = 1186, | |
| 839 kDocumentCreateEventMutationEvents = 1188, | |
| 840 kDocumentCreateEventSVGEvents = 1190, | |
| 841 kDocumentCreateEventDeviceMotionEvent = 1195, | |
| 842 kDocumentCreateEventDeviceOrientationEvent = 1196, | |
| 843 kDocumentCreateEventIDBVersionChangeEvent = 1201, | |
| 844 kDocumentCreateEventStorageEvent = 1221, | |
| 845 kDocumentCreateEventWebGLContextEvent = 1224, | |
| 846 kDocumentCreateEventCloseEvent = 1227, | |
| 847 kDocumentCreateEventKeyboardEvents = 1228, | |
| 848 kHTMLMediaElement = 1229, | |
| 849 kHTMLMediaElementInDocument = 1230, | |
| 850 kHTMLMediaElementControlsAttribute = 1231, | |
| 851 kV8Animation_Oncancel_AttributeGetter = 1233, | |
| 852 kV8Animation_Oncancel_AttributeSetter = 1234, | |
| 853 kV8HTMLCommentInExternalScript = 1235, | |
| 854 kV8HTMLComment = 1236, | |
| 855 kV8SloppyModeBlockScopedFunctionRedefinition = 1237, | |
| 856 kV8ForInInitializer = 1238, | |
| 857 kV8Animation_Id_AttributeGetter = 1239, | |
| 858 kV8Animation_Id_AttributeSetter = 1240, | |
| 859 kApplicationCacheManifestSelectInsecureOrigin = 1245, | |
| 860 kApplicationCacheManifestSelectSecureOrigin = 1246, | |
| 861 kApplicationCacheAPIInsecureOrigin = 1247, | |
| 862 kApplicationCacheAPISecureOrigin = 1248, | |
| 863 // The above items are available in M50 branch | |
| 864 | |
| 865 kCSSAtRuleApply = 1249, | |
| 866 kCSSSelectorPseudoAny = 1250, | |
| 867 kDocumentAllItemNoArguments = 1252, | |
| 868 kDocumentAllItemNamed = 1253, | |
| 869 kDocumentAllItemIndexed = 1254, | |
| 870 kDocumentAllItemIndexedWithNonNumber = 1255, | |
| 871 kDocumentAllLegacyCallNoArguments = 1256, | |
| 872 kDocumentAllLegacyCallNamed = 1257, | |
| 873 kDocumentAllLegacyCallIndexed = 1258, | |
| 874 kDocumentAllLegacyCallIndexedWithNonNumber = 1259, | |
| 875 kDocumentAllLegacyCallTwoArguments = 1260, | |
| 876 kHTMLLabelElementControlForNonFormAssociatedElement = 1263, | |
| 877 kHTMLMediaElementLoadNetworkEmptyNotPaused = 1265, | |
| 878 kV8Window_WebkitSpeechGrammar_ConstructorGetter = 1267, | |
| 879 kV8Window_WebkitSpeechGrammarList_ConstructorGetter = 1268, | |
| 880 kV8Window_WebkitSpeechRecognition_ConstructorGetter = 1269, | |
| 881 kV8Window_WebkitSpeechRecognitionError_ConstructorGetter = 1270, | |
| 882 kV8Window_WebkitSpeechRecognitionEvent_ConstructorGetter = 1271, | |
| 883 kV8Window_SpeechSynthesis_AttributeGetter = 1272, | |
| 884 kV8IDBFactory_WebkitGetDatabaseNames_Method = 1273, | |
| 885 kImageDocument = 1274, | |
| 886 kScriptPassesCSPDynamic = 1275, | |
| 887 kCSPWithStrictDynamic = 1277, | |
| 888 kScrollAnchored = 1278, | |
| 889 kAddEventListenerFourArguments = 1279, | |
| 890 kRemoveEventListenerFourArguments = 1280, | |
| 891 kSVGCalcModeDiscrete = 1287, | |
| 892 kSVGCalcModeLinear = 1288, | |
| 893 kSVGCalcModePaced = 1289, | |
| 894 kSVGCalcModeSpline = 1290, | |
| 895 kFormSubmissionStarted = 1291, | |
| 896 kFormValidationStarted = 1292, | |
| 897 kFormValidationAbortedSubmission = 1293, | |
| 898 kFormValidationShowedMessage = 1294, | |
| 899 kWebAnimationsEasingAsFunctionLinear = 1295, | |
| 900 kWebAnimationsEasingAsFunctionOther = 1296, | |
| 901 // The above items are available in M51 branch | |
| 902 | |
| 903 kV8Document_Images_AttributeGetter = 1297, | |
| 904 kV8Document_Embeds_AttributeGetter = 1298, | |
| 905 kV8Document_Plugins_AttributeGetter = 1299, | |
| 906 kV8Document_Links_AttributeGetter = 1300, | |
| 907 kV8Document_Forms_AttributeGetter = 1301, | |
| 908 kV8Document_Scripts_AttributeGetter = 1302, | |
| 909 kV8Document_Anchors_AttributeGetter = 1303, | |
| 910 kV8Document_Applets_AttributeGetter = 1304, | |
| 911 kXMLHttpRequestCrossOriginWithCredentials = 1305, | |
| 912 kMediaStreamTrackRemote = 1306, | |
| 913 kV8Node_IsConnected_AttributeGetter = 1307, | |
| 914 kShadowRootDelegatesFocus = 1308, | |
| 915 kMixedShadowRootV0AndV1 = 1309, | |
| 916 kImageDocumentInFrame = 1310, | |
| 917 kMediaDocument = 1311, | |
| 918 kMediaDocumentInFrame = 1312, | |
| 919 kPluginDocument = 1313, | |
| 920 kPluginDocumentInFrame = 1314, | |
| 921 kSinkDocument = 1315, | |
| 922 kSinkDocumentInFrame = 1316, | |
| 923 kTextDocument = 1317, | |
| 924 kTextDocumentInFrame = 1318, | |
| 925 kViewSourceDocument = 1319, | |
| 926 kFileAPINativeLineEndings = 1320, | |
| 927 kPointerEventAttributeCount = 1321, | |
| 928 kCompositedReplication = 1322, | |
| 929 kV8DataTransferItem_WebkitGetAsEntry_Method = 1325, | |
| 930 kV8HTMLInputElement_WebkitEntries_AttributeGetter = 1326, | |
| 931 kEntry_Filesystem_AttributeGetter_IsolatedFileSystem = 1327, | |
| 932 kEntry_GetMetadata_Method_IsolatedFileSystem = 1328, | |
| 933 kEntry_MoveTo_Method_IsolatedFileSystem = 1329, | |
| 934 kEntry_CopyTo_Method_IsolatedFileSystem = 1330, | |
| 935 kEntry_Remove_Method_IsolatedFileSystem = 1331, | |
| 936 kEntry_GetParent_Method_IsolatedFileSystem = 1332, | |
| 937 kEntry_ToURL_Method_IsolatedFileSystem = 1333, | |
| 938 kDuring_Microtask_Alert = 1334, | |
| 939 kDuring_Microtask_Confirm = 1335, | |
| 940 kDuring_Microtask_Print = 1336, | |
| 941 kDuring_Microtask_Prompt = 1337, | |
| 942 kDuring_Microtask_SyncXHR = 1338, | |
| 943 kCredentialManagerGetReturnedCredential = 1342, | |
| 944 kGeolocationInsecureOriginDeprecatedNotRemoved = 1343, | |
| 945 kGeolocationInsecureOriginIframeDeprecatedNotRemoved = 1344, | |
| 946 kProgressElementWithNoneAppearance = 1345, | |
| 947 kProgressElementWithProgressBarAppearance = 1346, | |
| 948 kPointerEventAddListenerCount = 1347, | |
| 949 kCSSValueAppearanceNone = 1351, | |
| 950 kCSSValueAppearanceNotNone = 1352, | |
| 951 kCSSValueAppearanceOthers = 1353, | |
| 952 kCSSValueAppearanceButton = 1354, | |
| 953 kCSSValueAppearanceCaret = 1355, | |
| 954 kCSSValueAppearanceCheckbox = 1356, | |
| 955 kCSSValueAppearanceMenulist = 1357, | |
| 956 kCSSValueAppearanceMenulistButton = 1358, | |
| 957 kCSSValueAppearanceListbox = 1359, | |
| 958 kCSSValueAppearanceRadio = 1360, | |
| 959 kCSSValueAppearanceSearchField = 1361, | |
| 960 kCSSValueAppearanceTextField = 1362, | |
| 961 kAudioContextCreatePannerAutomated = 1363, | |
| 962 kPannerNodeSetPosition = 1364, | |
| 963 kPannerNodeSetOrientation = 1365, | |
| 964 kAudioListenerSetPosition = 1366, | |
| 965 kAudioListenerSetOrientation = 1367, | |
| 966 kIntersectionObserver_Constructor = 1368, | |
| 967 kDurableStoragePersist = 1369, | |
| 968 kDurableStoragePersisted = 1370, | |
| 969 kDurableStorageEstimate = 1371, | |
| 970 kCSSDeepCombinatorAndShadow = 1375, | |
| 971 kOpacityWithPreserve3DQuirk = 1376, | |
| 972 kCSSSelectorPseudoReadOnly = 1377, | |
| 973 kCSSSelectorPseudoReadWrite = 1378, | |
| 974 // The above items are available in M52 branch | |
| 975 | |
| 976 kCSSSelectorPseudoDefined = 1383, | |
| 977 kRTCPeerConnectionAddIceCandidatePromise = 1384, | |
| 978 kRTCPeerConnectionAddIceCandidateLegacy = 1385, | |
| 979 kRTCIceCandidateDefaultSdpMLineIndex = 1386, | |
| 980 kMediaStreamConstraintsOldAndNew = 1389, | |
| 981 kV8ArrayProtectorDirtied = 1390, | |
| 982 kV8ArraySpeciesModified = 1391, | |
| 983 kV8ArrayPrototypeConstructorModified = 1392, | |
| 984 kV8ArrayInstanceProtoModified = 1393, | |
| 985 kV8ArrayInstanceConstructorModified = 1394, | |
| 986 kV8LegacyFunctionDeclaration = 1395, | |
| 987 kV8RegExpPrototypeSourceGetter = 1396, | |
| 988 kV8RegExpPrototypeOldFlagGetter = 1397, | |
| 989 kV8DecimalWithLeadingZeroInStrictMode = 1398, | |
| 990 kGetUserMediaPrefixed = 1400, | |
| 991 kGetUserMediaLegacy = 1401, | |
| 992 kGetUserMediaPromise = 1402, | |
| 993 kCSSFilterFunctionNoArguments = 1403, | |
| 994 kV8LegacyDateParser = 1404, | |
| 995 kOpenSearchInsecureOriginInsecureTarget = 1405, | |
| 996 kOpenSearchInsecureOriginSecureTarget = 1406, | |
| 997 kOpenSearchSecureOriginInsecureTarget = 1407, | |
| 998 kOpenSearchSecureOriginSecureTarget = 1408, | |
| 999 kRegisterProtocolHandlerSecureOrigin = 1409, | |
| 1000 kRegisterProtocolHandlerInsecureOrigin = 1410, | |
| 1001 kCrossOriginWindowAlert = 1411, | |
| 1002 kCrossOriginWindowConfirm = 1412, | |
| 1003 kCrossOriginWindowPrompt = 1413, | |
| 1004 kCrossOriginWindowPrint = 1414, | |
| 1005 kMediaStreamOnActive = 1415, | |
| 1006 kMediaStreamOnInactive = 1416, | |
| 1007 kAddEventListenerPassiveTrue = 1417, | |
| 1008 kAddEventListenerPassiveFalse = 1418, | |
| 1009 kCSPReferrerDirective = 1419, | |
| 1010 kDocumentOpen = 1420, | |
| 1011 kElementRequestPointerLockInShadow = 1421, | |
| 1012 kShadowRootPointerLockElement = 1422, | |
| 1013 kDocumentPointerLockElementInV0Shadow = 1423, | |
| 1014 kTextAreaMaxLength = 1424, | |
| 1015 kTextAreaMinLength = 1425, | |
| 1016 kTopNavigationFromSubFrame = 1426, | |
| 1017 kPrefixedElementRequestFullscreenInShadow = 1427, | |
| 1018 kMediaSourceAbortRemove = 1428, | |
| 1019 kMediaSourceDurationTruncatingBuffered = 1429, | |
| 1020 kAudioContextCrossOriginIframe = 1430, | |
| 1021 // The above items are available in M53 branch | |
| 1022 | |
| 1023 kPointerEventSetCapture = 1431, | |
| 1024 kPointerEventDispatch = 1432, | |
| 1025 kMIDIMessageEventReceivedTime = 1433, | |
| 1026 kSummaryElementWithDisplayBlockAuthorRule = 1434, | |
| 1027 kV8MediaStream_Active_AttributeGetter = 1435, | |
| 1028 kBeforeInstallPromptEvent = 1436, | |
| 1029 kBeforeInstallPromptEventUserChoice = 1437, | |
| 1030 kBeforeInstallPromptEventPreventDefault = 1438, | |
| 1031 kBeforeInstallPromptEventPrompt = 1439, | |
| 1032 kExecCommandAltersHTMLStructure = 1440, | |
| 1033 kSecureContextCheckPassed = 1441, | |
| 1034 kSecureContextCheckFailed = 1442, | |
| 1035 kSecureContextCheckForSandboxedOriginPassed = 1443, | |
| 1036 kSecureContextCheckForSandboxedOriginFailed = 1444, | |
| 1037 kV8DefineGetterOrSetterWouldThrow = 1445, | |
| 1038 kV8FunctionConstructorReturnedUndefined = 1446, | |
| 1039 kV8BroadcastChannel_Constructor = 1447, | |
| 1040 kV8BroadcastChannel_PostMessage_Method = 1448, | |
| 1041 kV8BroadcastChannel_Close_Method = 1449, | |
| 1042 kTouchStartFired = 1450, | |
| 1043 kMouseDownFired = 1451, | |
| 1044 kPointerDownFired = 1452, | |
| 1045 kPointerDownFiredForTouch = 1453, | |
| 1046 kPointerEventDispatchPointerDown = 1454, | |
| 1047 kSVGSMILBeginOrEndEventValue = 1455, | |
| 1048 kSVGSMILBeginOrEndSyncbaseValue = 1456, | |
| 1049 kSVGSMILElementInsertedAfterLoad = 1457, | |
| 1050 kV8VisualViewport_ScrollLeft_AttributeGetter = 1458, | |
| 1051 kV8VisualViewport_ScrollTop_AttributeGetter = 1459, | |
| 1052 kV8VisualViewport_PageX_AttributeGetter = 1460, | |
| 1053 kV8VisualViewport_PageY_AttributeGetter = 1461, | |
| 1054 kV8VisualViewport_ClientWidth_AttributeGetter = 1462, | |
| 1055 kV8VisualViewport_ClientHeight_AttributeGetter = 1463, | |
| 1056 kV8VisualViewport_Scale_AttributeGetter = 1464, | |
| 1057 kVisualViewportScrollFired = 1465, | |
| 1058 kVisualViewportResizeFired = 1466, | |
| 1059 kNodeGetRootNode = 1467, | |
| 1060 kSlotChangeEventAddListener = 1468, | |
| 1061 kCSSValueAppearanceButtonRendered = 1469, | |
| 1062 kCSSValueAppearanceButtonForAnchor = 1470, | |
| 1063 kCSSValueAppearanceButtonForButton = 1471, | |
| 1064 kCSSValueAppearanceButtonForOtherButtons = 1472, | |
| 1065 kCSSValueAppearanceTextFieldRendered = 1473, | |
| 1066 kCSSValueAppearanceTextFieldForSearch = 1474, | |
| 1067 kCSSValueAppearanceTextFieldForTextField = 1475, | |
| 1068 kRTCPeerConnectionGetStats = 1476, | |
| 1069 kSVGSMILAnimationAppliedEffect = 1477, | |
| 1070 kPerformanceResourceTimingSizes = 1478, | |
| 1071 kEventSourceDocument = 1479, | |
| 1072 kEventSourceWorker = 1480, | |
| 1073 kSingleOriginInTimingAllowOrigin = 1481, | |
| 1074 kMultipleOriginsInTimingAllowOrigin = 1482, | |
| 1075 kStarInTimingAllowOrigin = 1483, | |
| 1076 kSVGSMILAdditiveAnimation = 1484, | |
| 1077 kSendBeaconWithNonSimpleContentType = 1485, | |
| 1078 kChromeLoadTimesRequestTime = 1486, | |
| 1079 kChromeLoadTimesStartLoadTime = 1487, | |
| 1080 kChromeLoadTimesCommitLoadTime = 1488, | |
| 1081 kChromeLoadTimesFinishDocumentLoadTime = 1489, | |
| 1082 kChromeLoadTimesFinishLoadTime = 1490, | |
| 1083 kChromeLoadTimesFirstPaintTime = 1491, | |
| 1084 kChromeLoadTimesFirstPaintAfterLoadTime = 1492, | |
| 1085 kChromeLoadTimesNavigationType = 1493, | |
| 1086 kChromeLoadTimesWasFetchedViaSpdy = 1494, | |
| 1087 kChromeLoadTimesWasNpnNegotiated = 1495, | |
| 1088 kChromeLoadTimesNpnNegotiatedProtocol = 1496, | |
| 1089 kChromeLoadTimesWasAlternateProtocolAvailable = 1497, | |
| 1090 kChromeLoadTimesConnectionInfo = 1498, | |
| 1091 kChromeLoadTimesUnknown = 1499, | |
| 1092 kSVGViewElement = 1500, | |
| 1093 kWebShareShare = 1501, | |
| 1094 kAuxclickAddListenerCount = 1502, | |
| 1095 kHTMLCanvasElement = 1503, | |
| 1096 kSVGSMILAnimationElementTiming = 1504, | |
| 1097 kSVGSMILBeginEndAnimationElement = 1505, | |
| 1098 kSVGSMILPausing = 1506, | |
| 1099 kSVGSMILCurrentTime = 1507, | |
| 1100 kHTMLBodyElementOnSelectionChangeAttribute = 1508, | |
| 1101 kForeignFetchInterception = 1509, | |
| 1102 kUsbGetDevices = 1519, | |
| 1103 kUsbRequestDevice = 1520, | |
| 1104 kUsbDeviceOpen = 1521, | |
| 1105 kUsbDeviceClose = 1522, | |
| 1106 kUsbDeviceSelectConfiguration = 1523, | |
| 1107 kUsbDeviceClaimInterface = 1524, | |
| 1108 kUsbDeviceReleaseInterface = 1525, | |
| 1109 kUsbDeviceSelectAlternateInterface = 1526, | |
| 1110 kUsbDeviceControlTransferIn = 1527, | |
| 1111 kUsbDeviceControlTransferOut = 1528, | |
| 1112 kUsbDeviceClearHalt = 1529, | |
| 1113 kUsbDeviceTransferIn = 1530, | |
| 1114 kUsbDeviceTransferOut = 1531, | |
| 1115 kUsbDeviceIsochronousTransferIn = 1532, | |
| 1116 kUsbDeviceIsochronousTransferOut = 1533, | |
| 1117 kUsbDeviceReset = 1534, | |
| 1118 // The above items are available in M54 branch | |
| 1119 | |
| 1120 kPointerEnterLeaveFired = 1535, | |
| 1121 kPointerOverOutFired = 1536, | |
| 1122 kDraggableAttribute = 1539, | |
| 1123 kCleanScriptElementWithNonce = 1540, | |
| 1124 kPotentiallyInjectedScriptElementWithNonce = 1541, | |
| 1125 kPendingStylesheetAddedAfterBodyStarted = 1542, | |
| 1126 kUntrustedMouseDownEventDispatchedToSelect = 1543, | |
| 1127 kBlockedSniffingAudioToScript = 1544, | |
| 1128 kBlockedSniffingVideoToScript = 1545, | |
| 1129 kBlockedSniffingCSVToScript = 1546, | |
| 1130 kMetaSetCookie = 1547, | |
| 1131 kMetaRefresh = 1548, | |
| 1132 kMetaSetCookieWhenCSPBlocksInlineScript = 1549, | |
| 1133 kMetaRefreshWhenCSPBlocksInlineScript = 1550, | |
| 1134 kMiddleClickAutoscrollStart = 1551, | |
| 1135 kRTCPeerConnectionCreateOfferOptionsOfferToReceive = 1553, | |
| 1136 kDragAndDropScrollStart = 1554, | |
| 1137 kPresentationConnectionListConnectionAvailableEventListener = 1555, | |
| 1138 kWebAudioAutoplayCrossOriginIframe = 1556, | |
| 1139 kVRGetDisplays = 1558, | |
| 1140 kXSSAuditorBlockedScript = 1581, | |
| 1141 kXSSAuditorBlockedEntirePage = 1582, | |
| 1142 kXSSAuditorDisabled = 1583, | |
| 1143 kXSSAuditorEnabledFilter = 1584, | |
| 1144 kXSSAuditorEnabledBlock = 1585, | |
| 1145 kXSSAuditorInvalid = 1586, | |
| 1146 kTextInputEventOnInput = 1589, | |
| 1147 kTextInputEventOnTextArea = 1590, | |
| 1148 kTextInputEventOnContentEditable = 1591, | |
| 1149 kTextInputEventOnNotNode = 1592, | |
| 1150 kWebkitBeforeTextInsertedOnInput = 1593, | |
| 1151 kWebkitBeforeTextInsertedOnTextArea = 1594, | |
| 1152 kWebkitBeforeTextInsertedOnContentEditable = 1595, | |
| 1153 kWebkitBeforeTextInsertedOnNotNode = 1596, | |
| 1154 kWebkitEditableContentChangedOnInput = 1597, | |
| 1155 kWebkitEditableContentChangedOnTextArea = 1598, | |
| 1156 kWebkitEditableContentChangedOnContentEditable = 1599, | |
| 1157 kWebkitEditableContentChangedOnNotNode = 1600, | |
| 1158 kV8NavigatorUserMediaError_ConstraintName_AttributeGetter = 1601, | |
| 1159 kV8HTMLMediaElement_SrcObject_AttributeGetter = 1602, | |
| 1160 kV8HTMLMediaElement_SrcObject_AttributeSetter = 1603, | |
| 1161 kCreateObjectURLBlob = 1604, | |
| 1162 kCreateObjectURLMediaSource = 1605, | |
| 1163 kCreateObjectURLMediaStream = 1606, | |
| 1164 kDocumentCreateTouchWindowNull = 1607, | |
| 1165 kDocumentCreateTouchWindowWrongType = 1608, | |
| 1166 kDocumentCreateTouchTargetNull = 1609, | |
| 1167 kDocumentCreateTouchTargetWrongType = 1610, | |
| 1168 kDocumentCreateTouchMoreThanSevenArguments = 1612, | |
| 1169 kLongTaskObserver = 1615, | |
| 1170 kCSSOffsetInEffect = 1617, | |
| 1171 // The above items are available in M55 branch | |
| 1172 | |
| 1173 kVRGetDisplaysInsecureOrigin = 1618, | |
| 1174 kVRRequestPresent = 1619, | |
| 1175 kVRRequestPresentInsecureOrigin = 1620, | |
| 1176 kVRDeprecatedFieldOfView = 1621, | |
| 1177 kVideoInCanvas = 1622, | |
| 1178 kHiddenAutoplayedVideoInCanvas = 1623, | |
| 1179 kOffscreenCanvas = 1624, | |
| 1180 kGamepadPose = 1625, | |
| 1181 kGamepadHand = 1626, | |
| 1182 kGamepadDisplayId = 1627, | |
| 1183 kGamepadButtonTouched = 1628, | |
| 1184 kGamepadPoseHasOrientation = 1629, | |
| 1185 kGamepadPoseHasPosition = 1630, | |
| 1186 kGamepadPosePosition = 1631, | |
| 1187 kGamepadPoseLinearVelocity = 1632, | |
| 1188 kGamepadPoseLinearAcceleration = 1633, | |
| 1189 kGamepadPoseOrientation = 1634, | |
| 1190 kGamepadPoseAngularVelocity = 1635, | |
| 1191 kGamepadPoseAngularAcceleration = 1636, | |
| 1192 kV8RTCDataChannel_MaxRetransmitTime_AttributeGetter = 1638, | |
| 1193 kV8RTCDataChannel_MaxRetransmits_AttributeGetter = 1639, | |
| 1194 kV8RTCDataChannel_Reliable_AttributeGetter = 1640, | |
| 1195 kV8RTCPeerConnection_AddStream_Method = 1641, | |
| 1196 kV8RTCPeerConnection_CreateDTMFSender_Method = 1642, | |
| 1197 kV8RTCPeerConnection_GetLocalStreams_Method = 1643, | |
| 1198 kV8RTCPeerConnection_GetRemoteStreams_Method = 1644, | |
| 1199 kV8RTCPeerConnection_GetStreamById_Method = 1645, | |
| 1200 kV8RTCPeerConnection_RemoveStream_Method = 1646, | |
| 1201 kRTCPeerConnectionCreateDataChannelMaxRetransmitTime = 1648, | |
| 1202 kRTCPeerConnectionCreateDataChannelMaxRetransmits = 1649, | |
| 1203 kAudioContextCreateConstantSource = 1650, | |
| 1204 kWebAudioConstantSourceNode = 1651, | |
| 1205 kLoopbackEmbeddedInSecureContext = 1652, | |
| 1206 kLoopbackEmbeddedInNonSecureContext = 1653, | |
| 1207 kBlinkMacSystemFont = 1654, | |
| 1208 kRTCIceServerURL = 1656, | |
| 1209 kRTCIceServerURLs = 1657, | |
| 1210 kOffscreenCanvasTransferToImageBitmap2D = 1658, | |
| 1211 kOffscreenCanvasTransferToImageBitmapWebGL = 1659, | |
| 1212 kOffscreenCanvasCommit2D = 1660, | |
| 1213 kOffscreenCanvasCommitWebGL = 1661, | |
| 1214 kRTCConfigurationIceTransportPolicy = 1662, | |
| 1215 kRTCConfigurationIceTransports = 1664, | |
| 1216 kDocumentFullscreenElementInV0Shadow = 1665, | |
| 1217 kScriptWithCSPBypassingSchemeParserInserted = 1666, | |
| 1218 kScriptWithCSPBypassingSchemeNotParserInserted = 1667, | |
| 1219 kDocumentCreateElement2ndArgStringHandling = 1668, | |
| 1220 kV8MediaRecorder_Start_Method = 1669, | |
| 1221 kWebBluetoothRequestDevice = 1670, | |
| 1222 kUnitlessPerspectiveInPerspectiveProperty = 1671, | |
| 1223 kUnitlessPerspectiveInTransformProperty = 1672, | |
| 1224 kV8RTCSessionDescription_Type_AttributeGetter = 1673, | |
| 1225 kV8RTCSessionDescription_Type_AttributeSetter = 1674, | |
| 1226 kV8RTCSessionDescription_Sdp_AttributeGetter = 1675, | |
| 1227 kV8RTCSessionDescription_Sdp_AttributeSetter = 1676, | |
| 1228 kRTCSessionDescriptionInitNoType = 1677, | |
| 1229 kRTCSessionDescriptionInitNoSdp = 1678, | |
| 1230 kHTMLMediaElementPreloadForcedMetadata = 1679, | |
| 1231 kGenericSensorStart = 1680, | |
| 1232 kGenericSensorStop = 1681, | |
| 1233 kTouchEventPreventedNoTouchAction = 1682, | |
| 1234 kTouchEventPreventedForcedDocumentPassiveNoTouchAction = 1683, | |
| 1235 kV8Event_StopPropagation_Method = 1684, | |
| 1236 kV8Event_StopImmediatePropagation_Method = 1685, | |
| 1237 kImageCaptureConstructor = 1686, | |
| 1238 kV8Document_RootScroller_AttributeGetter = 1687, | |
| 1239 kV8Document_RootScroller_AttributeSetter = 1688, | |
| 1240 kCustomElementRegistryDefine = 1689, | |
| 1241 kLinkHeaderServiceWorker = 1690, | |
| 1242 kCSSShadowPiercingDescendantCombinator = 1691, | |
| 1243 // The above items are available in M56 branch. | |
| 1244 | |
| 1245 kCSSFlexibleBox = 1692, | |
| 1246 kCSSGridLayout = 1693, | |
| 1247 kV8BarcodeDetector_Detect_Method = 1694, | |
| 1248 kV8FaceDetector_Detect_Method = 1695, | |
| 1249 kFullscreenAllowedByOrientationChange = 1696, | |
| 1250 kServiceWorkerRespondToNavigationRequestWithRedirectedResponse = 1697, | |
| 1251 kV8AudioContext_Constructor = 1698, | |
| 1252 kV8OfflineAudioContext_Constructor = 1699, | |
| 1253 kAppInstalledEventAddListener = 1700, | |
| 1254 kAudioContextGetOutputTimestamp = 1701, | |
| 1255 kV8MediaStreamAudioDestinationNode_Constructor = 1702, | |
| 1256 kV8AnalyserNode_Constructor = 1703, | |
| 1257 kV8AudioBuffer_Constructor = 1704, | |
| 1258 kV8AudioBufferSourceNode_Constructor = 1705, | |
| 1259 kV8AudioProcessingEvent_Constructor = 1706, | |
| 1260 kV8BiquadFilterNode_Constructor = 1707, | |
| 1261 kV8ChannelMergerNode_Constructor = 1708, | |
| 1262 kV8ChannelSplitterNode_Constructor = 1709, | |
| 1263 kV8ConstantSourceNode_Constructor = 1710, | |
| 1264 kV8ConvolverNode_Constructor = 1711, | |
| 1265 kV8DelayNode_Constructor = 1712, | |
| 1266 kV8DynamicsCompressorNode_Constructor = 1713, | |
| 1267 kV8GainNode_Constructor = 1714, | |
| 1268 kV8IIRFilterNode_Constructor = 1715, | |
| 1269 kV8MediaElementAudioSourceNode_Constructor = 1716, | |
| 1270 kV8MediaStreamAudioSourceNode_Constructor = 1717, | |
| 1271 kV8OfflineAudioCompletionEvent_Constructor = 1718, | |
| 1272 kV8OscillatorNode_Constructor = 1719, | |
| 1273 kV8PannerNode_Constructor = 1720, | |
| 1274 kV8PeriodicWave_Constructor = 1721, | |
| 1275 kV8StereoPannerNode_Constructor = 1722, | |
| 1276 kV8WaveShaperNode_Constructor = 1723, | |
| 1277 kV8Headers_GetAll_Method = 1724, | |
| 1278 kNavigatorVibrateEngagementNone = 1725, | |
| 1279 kNavigatorVibrateEngagementMinimal = 1726, | |
| 1280 kNavigatorVibrateEngagementLow = 1727, | |
| 1281 kNavigatorVibrateEngagementMedium = 1728, | |
| 1282 kNavigatorVibrateEngagementHigh = 1729, | |
| 1283 kNavigatorVibrateEngagementMax = 1730, | |
| 1284 kAlertEngagementNone = 1731, | |
| 1285 kAlertEngagementMinimal = 1732, | |
| 1286 kAlertEngagementLow = 1733, | |
| 1287 kAlertEngagementMedium = 1734, | |
| 1288 kAlertEngagementHigh = 1735, | |
| 1289 kAlertEngagementMax = 1736, | |
| 1290 kConfirmEngagementNone = 1737, | |
| 1291 kConfirmEngagementMinimal = 1738, | |
| 1292 kConfirmEngagementLow = 1739, | |
| 1293 kConfirmEngagementMedium = 1740, | |
| 1294 kConfirmEngagementHigh = 1741, | |
| 1295 kConfirmEngagementMax = 1742, | |
| 1296 kPromptEngagementNone = 1743, | |
| 1297 kPromptEngagementMinimal = 1744, | |
| 1298 kPromptEngagementLow = 1745, | |
| 1299 kPromptEngagementMedium = 1746, | |
| 1300 kPromptEngagementHigh = 1747, | |
| 1301 kPromptEngagementMax = 1748, | |
| 1302 kTopNavInSandbox = 1749, | |
| 1303 kTopNavInSandboxWithoutGesture = 1750, | |
| 1304 kTopNavInSandboxWithPerm = 1751, | |
| 1305 kTopNavInSandboxWithPermButNoGesture = 1752, | |
| 1306 kReferrerPolicyHeader = 1753, | |
| 1307 kHTMLAnchorElementReferrerPolicyAttribute = 1754, | |
| 1308 kHTMLIFrameElementReferrerPolicyAttribute = 1755, | |
| 1309 kHTMLImageElementReferrerPolicyAttribute = 1756, | |
| 1310 kHTMLLinkElementReferrerPolicyAttribute = 1757, | |
| 1311 kBaseElement = 1758, | |
| 1312 kBaseWithCrossOriginHref = 1759, | |
| 1313 kBaseWithDataHref = 1760, | |
| 1314 kBaseWithNewlinesInTarget = 1761, | |
| 1315 kBaseWithOpenBracketInTarget = 1762, | |
| 1316 kBaseWouldBeBlockedByDefaultSrc = 1763, | |
| 1317 kV8AssigmentExpressionLHSIsCallInSloppy = 1764, | |
| 1318 kV8AssigmentExpressionLHSIsCallInStrict = 1765, | |
| 1319 kV8PromiseConstructorReturnedUndefined = 1766, | |
| 1320 kFormSubmittedWithUnclosedFormControl = 1767, | |
| 1321 kDocumentCompleteURLHTTPContainingNewline = 1768, | |
| 1322 kDocumentCompleteURLHTTPContainingNewlineAndLessThan = 1770, | |
| 1323 kDocumentCompleteURLNonHTTPContainingNewline = 1771, | |
| 1324 kScrollbarUseVerticalScrollbarButton = 1777, | |
| 1325 kScrollbarUseVerticalScrollbarThumb = 1778, | |
| 1326 kScrollbarUseVerticalScrollbarTrack = 1779, | |
| 1327 kScrollbarUseHorizontalScrollbarButton = 1780, | |
| 1328 kScrollbarUseHorizontalScrollbarThumb = 1781, | |
| 1329 kScrollbarUseHorizontalScrollbarTrack = 1782, | |
| 1330 kHTMLTableCellElementColspan = 1783, | |
| 1331 kHTMLTableCellElementColspanGreaterThan1000 = 1784, | |
| 1332 kHTMLTableCellElementColspanGreaterThan8190 = 1785, | |
| 1333 kSelectionAddRangeIntersect = 1786, | |
| 1334 kPostMessageFromInsecureToSecureToplevel = 1787, | |
| 1335 // The above items are available in M57 branch. | |
| 1336 | |
| 1337 kV8MediaSession_Metadata_AttributeGetter = 1788, | |
| 1338 kV8MediaSession_Metadata_AttributeSetter = 1789, | |
| 1339 kV8MediaSession_PlaybackState_AttributeGetter = 1790, | |
| 1340 kV8MediaSession_PlaybackState_AttributeSetter = 1791, | |
| 1341 kV8MediaSession_SetActionHandler_Method = 1792, | |
| 1342 kWebNFCPush = 1793, | |
| 1343 kWebNFCCancelPush = 1794, | |
| 1344 kWebNFCWatch = 1795, | |
| 1345 kWebNFCCancelWatch = 1796, | |
| 1346 kAudioParamCancelAndHoldAtTime = 1797, | |
| 1347 kCSSValueUserModifyReadOnly = 1798, | |
| 1348 kCSSValueUserModifyReadWrite = 1799, | |
| 1349 kCSSValueUserModifyReadWritePlaintextOnly = 1800, | |
| 1350 kV8TextDetector_Detect_Method = 1801, | |
| 1351 kCSSValueOnDemand = 1802, | |
| 1352 kServiceWorkerNavigationPreload = 1803, | |
| 1353 kFullscreenRequestWithPendingElement = 1804, | |
| 1354 kHTMLIFrameElementAllowfullscreenAttributeSetAfterContentLoad = 1805, | |
| 1355 kPointerEventSetCaptureOutsideDispatch = 1806, | |
| 1356 kNotificationPermissionRequestedInsecureOrigin = 1807, | |
| 1357 kV8DeprecatedStorageInfo_QueryUsageAndQuota_Method = 1808, | |
| 1358 kV8DeprecatedStorageInfo_RequestQuota_Method = 1809, | |
| 1359 kV8DeprecatedStorageQuota_QueryUsageAndQuota_Method = 1810, | |
| 1360 kV8DeprecatedStorageQuota_RequestQuota_Method = 1811, | |
| 1361 kV8FileReaderSync_Constructor = 1812, | |
| 1362 kUncancelableTouchEventPreventDefaulted = 1813, | |
| 1363 kUncancelableTouchEventDueToMainThreadResponsivenessPreventDefaulted = 1814, | |
| 1364 kV8HTMLVideoElement_Poster_AttributeGetter = 1815, | |
| 1365 kV8HTMLVideoElement_Poster_AttributeSetter = 1816, | |
| 1366 kNotificationPermissionRequestedIframe = 1817, | |
| 1367 kPresentationReceiverInsecureOrigin = 1819, | |
| 1368 kPresentationReceiverSecureOrigin = 1820, | |
| 1369 kPresentationRequestInsecureOrigin = 1821, | |
| 1370 kPresentationRequestSecureOrigin = 1822, | |
| 1371 kRtcpMuxPolicyNegotiate = 1823, | |
| 1372 kDOMClobberedVariableAccessed = 1824, | |
| 1373 kHTMLDocumentCreateProcessingInstruction = 1825, | |
| 1374 kFetchResponseConstructionWithStream = 1826, | |
| 1375 kLocationOrigin = 1827, | |
| 1376 kDocumentOrigin = 1828, | |
| 1377 kCanvas2DFilter = 1830, | |
| 1378 kCanvas2DImageSmoothingQuality = 1831, | |
| 1379 kCanvasToBlob = 1832, | |
| 1380 kCanvasToDataURL = 1833, | |
| 1381 kOffscreenCanvasConvertToBlob = 1834, | |
| 1382 kSVGInCanvas2D = 1835, | |
| 1383 kSVGInWebGL = 1836, | |
| 1384 kSelectionFuncionsChangeFocus = 1837, | |
| 1385 kHTMLObjectElementGetter = 1838, | |
| 1386 kHTMLObjectElementSetter = 1839, | |
| 1387 kHTMLEmbedElementGetter = 1840, | |
| 1388 kHTMLEmbedElementSetter = 1841, | |
| 1389 kTransformUsesBoxSizeOnSVG = 1842, | |
| 1390 // The above items are available in M58 branch. | |
| 1391 | |
| 1392 kScrollByKeyboardArrowKeys = 1843, | |
| 1393 kScrollByKeyboardPageUpDownKeys = 1844, | |
| 1394 kScrollByKeyboardHomeEndKeys = 1845, | |
| 1395 kScrollByKeyboardSpacebarKey = 1846, | |
| 1396 kScrollByTouch = 1847, | |
| 1397 kScrollByWheel = 1848, | |
| 1398 kScheduledActionIgnored = 1849, | |
| 1399 kGetCanvas2DContextAttributes = 1850, | |
| 1400 kV8HTMLInputElement_Capture_AttributeGetter = 1851, | |
| 1401 kV8HTMLInputElement_Capture_AttributeSetter = 1852, | |
| 1402 kHTMLMediaElementControlsListAttribute = 1853, | |
| 1403 kHTMLMediaElementControlsListNoDownload = 1854, | |
| 1404 kHTMLMediaElementControlsListNoFullscreen = 1855, | |
| 1405 kHTMLMediaElementControlsListNoRemotePlayback = 1856, | |
| 1406 kPointerEventClickRetargetCausedByCapture = 1857, | |
| 1407 kVRDisplayDisplayName = 1861, | |
| 1408 kVREyeParametersOffset = 1862, | |
| 1409 kVRPoseLinearVelocity = 1863, | |
| 1410 kVRPoseLinearAcceleration = 1864, | |
| 1411 kVRPoseAngularVelocity = 1865, | |
| 1412 kVRPoseAngularAcceleration = 1866, | |
| 1413 kCSSOverflowPaged = 1867, | |
| 1414 kChildSrcAllowedWorkerThatScriptSrcBlocked = 1868, | |
| 1415 kHTMLTableElementPresentationAttributeBackground = 1869, | |
| 1416 kV8Navigator_GetInstalledRelatedApps_Method = 1870, | |
| 1417 kNamedAccessOnWindow_ChildBrowsingContext = 1871, | |
| 1418 kNamedAccessOnWindow_ChildBrowsingContext_CrossOriginNameMismatch = 1872, | |
| 1419 kV0CustomElementsRegisterHTMLCustomTag = 1873, | |
| 1420 kV0CustomElementsRegisterHTMLTypeExtension = 1874, | |
| 1421 kV0CustomElementsRegisterSVGElement = 1875, | |
| 1422 kV0CustomElementsRegisterEmbedderElement = 1876, | |
| 1423 kV0CustomElementsCreateCustomTagElement = 1877, | |
| 1424 kV0CustomElementsCreateTypeExtensionElement = 1878, | |
| 1425 kV0CustomElementsConstruct = 1879, | |
| 1426 kV8IDBObserver_Observe_Method = 1880, | |
| 1427 kV8IDBObserver_Unobserve_Method = 1881, | |
| 1428 kWebBluetoothRemoteCharacteristicGetDescriptor = 1882, | |
| 1429 kWebBluetoothRemoteCharacteristicGetDescriptors = 1883, | |
| 1430 kWebBluetoothRemoteCharacteristicReadValue = 1884, | |
| 1431 kWebBluetoothRemoteCharacteristicWriteValue = 1885, | |
| 1432 kWebBluetoothRemoteCharacteristicStartNotifications = 1886, | |
| 1433 kWebBluetoothRemoteCharacteristicStopNotifications = 1887, | |
| 1434 kWebBluetoothRemoteDescriptorReadValue = 1888, | |
| 1435 kWebBluetoothRemoteDescriptorWriteValue = 1889, | |
| 1436 kWebBluetoothRemoteServerConnect = 1890, | |
| 1437 kWebBluetoothRemoteServerDisconnect = 1891, | |
| 1438 kWebBluetoothRemoteServerGetPrimaryService = 1892, | |
| 1439 kWebBluetoothRemoteServerGetPrimaryServices = 1893, | |
| 1440 kWebBluetoothRemoteServiceGetCharacteristic = 1894, | |
| 1441 kWebBluetoothRemoteServiceGetCharacteristics = 1895, | |
| 1442 kHTMLContentElement = 1896, | |
| 1443 kHTMLShadowElement = 1897, | |
| 1444 kHTMLSlotElement = 1898, | |
| 1445 kAccelerometerConstructor = 1899, | |
| 1446 kAbsoluteOrientationSensorConstructor = 1900, | |
| 1447 kAmbientLightSensorConstructor = 1901, | |
| 1448 kGenericSensorOnActivate = 1902, | |
| 1449 kGenericSensorOnChange = 1903, | |
| 1450 kGenericSensorOnError = 1904, | |
| 1451 kGenericSensorActivated = 1905, | |
| 1452 kGyroscopeConstructor = 1906, | |
| 1453 kMagnetometerConstructor = 1907, | |
| 1454 kOrientationSensorPopulateMatrix = 1908, | |
| 1455 kWindowOpenWithInvalidURL = 1909, | |
| 1456 kCrossOriginMainFrameNulledNameAccessed = 1910, | |
| 1457 kMenuItemElementIconAttribute = 1911, | |
| 1458 kWebkitCSSMatrixSetMatrixValue = 1912, | |
| 1459 kWebkitCSSMatrixConstructFromString = 1913, | |
| 1460 kCanRequestURLHTTPContainingNewline = 1914, | |
| 1461 kCanRequestURLNonHTTPContainingNewline = 1915, | |
| 1462 kGetGamepads = 1916, | |
| 1463 kV8SVGPathElement_GetPathSegAtLength_Method = 1917, | |
| 1464 kMediaStreamConstraintsAudio = 1918, | |
| 1465 kMediaStreamConstraintsAudioUnconstrained = 1919, | |
| 1466 kMediaStreamConstraintsVideo = 1920, | |
| 1467 kMediaStreamConstraintsVideoUnconstrained = 1921, | |
| 1468 kMediaStreamConstraintsWidth = 1922, | |
| 1469 kMediaStreamConstraintsHeight = 1923, | |
| 1470 kMediaStreamConstraintsAspectRatio = 1924, | |
| 1471 kMediaStreamConstraintsFrameRate = 1925, | |
| 1472 kMediaStreamConstraintsFacingMode = 1926, | |
| 1473 kMediaStreamConstraintsVolume = 1927, | |
| 1474 kMediaStreamConstraintsSampleRate = 1928, | |
| 1475 kMediaStreamConstraintsSampleSize = 1929, | |
| 1476 kMediaStreamConstraintsEchoCancellation = 1930, | |
| 1477 kMediaStreamConstraintsLatency = 1931, | |
| 1478 kMediaStreamConstraintsChannelCount = 1932, | |
| 1479 kMediaStreamConstraintsDeviceIdAudio = 1933, | |
| 1480 kMediaStreamConstraintsDeviceIdVideo = 1934, | |
| 1481 kMediaStreamConstraintsDisableLocalEcho = 1935, | |
| 1482 kMediaStreamConstraintsGroupIdAudio = 1936, | |
| 1483 kMediaStreamConstraintsGroupIdVideo = 1937, | |
| 1484 kMediaStreamConstraintsVideoKind = 1938, | |
| 1485 kMediaStreamConstraintsDepthNear = 1939, | |
| 1486 kMediaStreamConstraintsDepthFar = 1940, | |
| 1487 kMediaStreamConstraintsFocalLengthX = 1941, | |
| 1488 kMediaStreamConstraintsFocalLengthY = 1942, | |
| 1489 kMediaStreamConstraintsMediaStreamSourceAudio = 1943, | |
| 1490 kMediaStreamConstraintsMediaStreamSourceVideo = 1944, | |
| 1491 kMediaStreamConstraintsRenderToAssociatedSink = 1945, | |
| 1492 kMediaStreamConstraintsHotwordEnabled = 1946, | |
| 1493 kMediaStreamConstraintsGoogEchoCancellation = 1947, | |
| 1494 kMediaStreamConstraintsGoogExperimentalEchoCancellation = 1948, | |
| 1495 kMediaStreamConstraintsGoogAutoGainControl = 1949, | |
| 1496 kMediaStreamConstraintsGoogExperimentalAutoGainControl = 1950, | |
| 1497 kMediaStreamConstraintsGoogNoiseSuppression = 1951, | |
| 1498 kMediaStreamConstraintsGoogHighpassFilter = 1952, | |
| 1499 kMediaStreamConstraintsGoogTypingNoiseDetection = 1953, | |
| 1500 kMediaStreamConstraintsGoogExperimentalNoiseSuppression = 1954, | |
| 1501 kMediaStreamConstraintsGoogBeamforming = 1955, | |
| 1502 kMediaStreamConstraintsGoogArrayGeometry = 1956, | |
| 1503 kMediaStreamConstraintsGoogAudioMirroring = 1957, | |
| 1504 kMediaStreamConstraintsGoogDAEchoCancellation = 1958, | |
| 1505 kMediaStreamConstraintsGoogNoiseReduction = 1959, | |
| 1506 kMediaStreamConstraintsGoogPowerLineFrequency = 1960, | |
| 1507 // The above items are available in M59 branch. | |
| 1508 | |
| 1509 kViewportFixedPositionUnderFilter = 1961, | |
| 1510 kRequestMIDIAccessWithSysExOption = 1962, | |
| 1511 kRequestMIDIAccessIframeWithSysExOption = 1963, | |
| 1512 kGamepadAxes = 1964, | |
| 1513 kGamepadButtons = 1965, | |
| 1514 kVibrateWithoutUserGesture = 1966, | |
| 1515 kDispatchMouseEventOnDisabledFormControl = 1967, | |
| 1516 kElementNameDOMInvalidHTMLParserValid = 1968, | |
| 1517 kElementNameDOMValidHTMLParserInvalid = 1969, | |
| 1518 kGATTServerDisconnectedEvent = 1970, | |
| 1519 kAnchorClickDispatchForNonConnectedNode = 1971, | |
| 1520 kHTMLParseErrorNestedForm = 1972, | |
| 1521 kFontShapingNotDefGlyphObserved = 1973, | |
| 1522 kPostMessageOutgoingWouldBeBlockedByConnectSrc = 1974, | |
| 1523 kPostMessageIncomingWouldBeBlockedByConnectSrc = 1975, | |
| 1524 kPaymentRequestNetworkNameInSupportedMethods = 1976, | |
| 1525 | |
| 1526 // Add new features immediately above this line. Don't change assigned | |
| 1527 // numbers of any item, and don't reuse removed slots. | |
| 1528 // Also, run update_use_counter_feature_enum.py in | |
| 1529 // chromium/src/tools/metrics/histograms/ to update the UMA mapping. | |
| 1530 kNumberOfFeatures, // This enum value must be last. | |
| 1531 }; | |
| 1532 | |
| 1533 } // namespace blink | |
| 1534 | |
| 1535 #endif // WebFeature_h | |
| OLD | NEW |