├── .gitignore ├── CMakeLists.txt ├── CreateSDK.cmake ├── Deps.cmake ├── Jenkinsfile ├── LICENSE ├── README.md ├── Source ├── .clang-format ├── CMakeLists.txt ├── GetDeps │ ├── CMakeLists.txt │ └── dummy.c ├── JavaScriptCore │ ├── API │ │ ├── APICallbackFunction.h │ │ ├── APICast.h │ │ ├── APIUtils.h │ │ ├── JSAPIGlobalObject.cpp │ │ ├── JSAPIGlobalObject.h │ │ ├── JSAPIGlobalObject.mm │ │ ├── JSAPIValueWrapper.cpp │ │ ├── JSAPIValueWrapper.h │ │ ├── JSAPIWrapperObject.h │ │ ├── JSAPIWrapperObject.mm │ │ ├── JSBase.cpp │ │ ├── JSBase.h │ │ ├── JSBaseInternal.h │ │ ├── JSBasePrivate.h │ │ ├── JSCTestRunnerUtils.cpp │ │ ├── JSCTestRunnerUtils.h │ │ ├── JSCallbackConstructor.cpp │ │ ├── JSCallbackConstructor.h │ │ ├── JSCallbackFunction.cpp │ │ ├── JSCallbackFunction.h │ │ ├── JSCallbackObject.cpp │ │ ├── JSCallbackObject.h │ │ ├── JSCallbackObjectFunctions.h │ │ ├── JSClassRef.cpp │ │ ├── JSClassRef.h │ │ ├── JSContext.h │ │ ├── JSContext.mm │ │ ├── JSContextInternal.h │ │ ├── JSContextPrivate.h │ │ ├── JSContextRef.cpp │ │ ├── JSContextRef.h │ │ ├── JSContextRefInspectorSupport.h │ │ ├── JSContextRefInternal.h │ │ ├── JSContextRefPrivate.h │ │ ├── JSExport.h │ │ ├── JSHeapFinalizerPrivate.cpp │ │ ├── JSHeapFinalizerPrivate.h │ │ ├── JSManagedValue.h │ │ ├── JSManagedValue.mm │ │ ├── JSManagedValueInternal.h │ │ ├── JSMarkingConstraintPrivate.cpp │ │ ├── JSMarkingConstraintPrivate.h │ │ ├── JSObjectRef.cpp │ │ ├── JSObjectRef.h │ │ ├── JSObjectRefPrivate.h │ │ ├── JSRemoteInspector.cpp │ │ ├── JSRemoteInspector.h │ │ ├── JSRetainPtr.h │ │ ├── JSScript.h │ │ ├── JSScript.mm │ │ ├── JSScriptInternal.h │ │ ├── JSScriptRef.cpp │ │ ├── JSScriptRefPrivate.h │ │ ├── JSScriptSourceProvider.h │ │ ├── JSScriptSourceProvider.mm │ │ ├── JSStringRef.cpp │ │ ├── JSStringRef.h │ │ ├── JSStringRefBSTR.cpp │ │ ├── JSStringRefBSTR.h │ │ ├── JSStringRefCF.cpp │ │ ├── JSStringRefCF.h │ │ ├── JSStringRefPrivate.h │ │ ├── JSTypedArray.cpp │ │ ├── JSTypedArray.h │ │ ├── JSValue.h │ │ ├── JSValue.mm │ │ ├── JSValueInternal.h │ │ ├── JSValuePrivate.h │ │ ├── JSValueRef.cpp │ │ ├── JSValueRef.h │ │ ├── JSVirtualMachine.h │ │ ├── JSVirtualMachine.mm │ │ ├── JSVirtualMachineInternal.h │ │ ├── JSVirtualMachinePrivate.h │ │ ├── JSWeakObjectMapRefInternal.h │ │ ├── JSWeakObjectMapRefPrivate.cpp │ │ ├── JSWeakObjectMapRefPrivate.h │ │ ├── JSWeakPrivate.cpp │ │ ├── JSWeakPrivate.h │ │ ├── JSWeakValue.cpp │ │ ├── JSWeakValue.h │ │ ├── JSWrapperMap.h │ │ ├── JSWrapperMap.mm │ │ ├── JavaScript.h │ │ ├── JavaScriptCore.h │ │ ├── ObjCCallbackFunction.h │ │ ├── ObjCCallbackFunction.mm │ │ ├── ObjcRuntimeExtras.h │ │ ├── OpaqueJSString.cpp │ │ ├── OpaqueJSString.h │ │ ├── WebKitAvailability.h │ │ ├── glib │ │ │ ├── JSAPIWrapperGlobalObject.cpp │ │ │ ├── JSAPIWrapperGlobalObject.h │ │ │ ├── JSAPIWrapperObjectGLib.cpp │ │ │ ├── JSCAutocleanups.h │ │ │ ├── JSCCallbackFunction.cpp │ │ │ ├── JSCCallbackFunction.h │ │ │ ├── JSCClass.cpp │ │ │ ├── JSCClass.h │ │ │ ├── JSCClassPrivate.h │ │ │ ├── JSCContext.cpp │ │ │ ├── JSCContext.h │ │ │ ├── JSCContextPrivate.h │ │ │ ├── JSCDefines.h │ │ │ ├── JSCException.cpp │ │ │ ├── JSCException.h │ │ │ ├── JSCExceptionPrivate.h │ │ │ ├── JSCGLibWrapperObject.h │ │ │ ├── JSCOptions.cpp │ │ │ ├── JSCOptions.h │ │ │ ├── JSCValue.cpp │ │ │ ├── JSCValue.h │ │ │ ├── JSCValuePrivate.h │ │ │ ├── JSCVersion.cpp │ │ │ ├── JSCVersion.h.in │ │ │ ├── JSCVirtualMachine.cpp │ │ │ ├── JSCVirtualMachine.h │ │ │ ├── JSCVirtualMachinePrivate.h │ │ │ ├── JSCWeakValue.cpp │ │ │ ├── JSCWeakValue.h │ │ │ ├── JSCWrapperMap.cpp │ │ │ ├── JSCWrapperMap.h │ │ │ ├── docs │ │ │ │ ├── jsc-glib-4.0-sections.txt │ │ │ │ ├── jsc-glib-4.0.types │ │ │ │ └── jsc-glib-docs.sgml │ │ │ └── jsc.h │ │ └── tests │ │ │ ├── CompareAndSwapTest.cpp │ │ │ ├── CompareAndSwapTest.h │ │ │ ├── CurrentThisInsideBlockGetterTest.h │ │ │ ├── CurrentThisInsideBlockGetterTest.mm │ │ │ ├── CustomGlobalObjectClassTest.c │ │ │ ├── CustomGlobalObjectClassTest.h │ │ │ ├── DateTests.h │ │ │ ├── DateTests.mm │ │ │ ├── ExecutionTimeLimitTest.cpp │ │ │ ├── ExecutionTimeLimitTest.h │ │ │ ├── FunctionOverridesTest.cpp │ │ │ ├── FunctionOverridesTest.h │ │ │ ├── GlobalContextWithFinalizerTest.cpp │ │ │ ├── GlobalContextWithFinalizerTest.h │ │ │ ├── JSExportTests.h │ │ │ ├── JSExportTests.mm │ │ │ ├── JSNode.c │ │ │ ├── JSNode.h │ │ │ ├── JSNodeList.c │ │ │ ├── JSNodeList.h │ │ │ ├── JSONParseTest.cpp │ │ │ ├── JSONParseTest.h │ │ │ ├── JSObjectGetProxyTargetTest.cpp │ │ │ ├── JSObjectGetProxyTargetTest.h │ │ │ ├── JSWrapperMapTests.h │ │ │ ├── JSWrapperMapTests.mm │ │ │ ├── MultithreadedMultiVMExecutionTest.cpp │ │ │ ├── MultithreadedMultiVMExecutionTest.h │ │ │ ├── Node.c │ │ │ ├── Node.h │ │ │ ├── NodeList.c │ │ │ ├── NodeList.h │ │ │ ├── PingPongStackOverflowTest.cpp │ │ │ ├── PingPongStackOverflowTest.h │ │ │ ├── Regress141275.h │ │ │ ├── Regress141275.mm │ │ │ ├── Regress141809.h │ │ │ ├── Regress141809.mm │ │ │ ├── TypedArrayCTest.cpp │ │ │ ├── TypedArrayCTest.h │ │ │ ├── minidom.c │ │ │ ├── minidom.html │ │ │ ├── minidom.js │ │ │ ├── testIncludes.m │ │ │ ├── testapi.c │ │ │ ├── testapi.cpp │ │ │ ├── testapi.mm │ │ │ └── testapiScripts │ │ │ ├── basic.js │ │ │ ├── dependencyListTests │ │ │ ├── badModuleImportId.js │ │ │ ├── bar.js │ │ │ ├── dependenciesEntry.js │ │ │ ├── foo.js │ │ │ ├── missingImport.js │ │ │ ├── referenceError.js │ │ │ └── syntaxError.js │ │ │ ├── foo.js │ │ │ ├── testapi-function-overrides.js │ │ │ └── testapi.js │ ├── CMakeLists.txt │ ├── COPYING.LIB │ ├── Configurations │ │ ├── Base.xcconfig │ │ ├── DebugRelease.xcconfig │ │ ├── FeatureDefines.xcconfig │ │ ├── JSC.xcconfig │ │ ├── JavaScriptCore.xcconfig │ │ ├── SDKVariant.xcconfig │ │ ├── ToolExecutable.xcconfig │ │ ├── Version.xcconfig │ │ └── WebKitTargetConditionals.xcconfig │ ├── DerivedSources-input.xcfilelist │ ├── DerivedSources-output.xcfilelist │ ├── DerivedSources.make │ ├── GLib.cmake │ ├── Info.plist │ ├── JavaScriptCore.modulemap │ ├── JavaScriptCore.order │ ├── JavaScriptCore.vcxproj │ │ ├── JavaScriptCore.proj │ │ ├── JavaScriptCore.resources │ │ │ └── Info.plist │ │ └── resource.h │ ├── JavaScriptCore.xcodeproj │ │ └── project.pbxproj │ ├── JavaScriptCorePrefix.h │ ├── KeywordLookupGenerator.py │ ├── Makefile │ ├── PlatformFTW.cmake │ ├── PlatformGTK.cmake │ ├── PlatformJSCOnly.cmake │ ├── PlatformMac.cmake │ ├── PlatformPlayStation.cmake │ ├── PlatformUltralightLinux.cmake │ ├── PlatformUltralightMac.cmake │ ├── PlatformUltralightWin.cmake │ ├── PlatformWPE.cmake │ ├── PlatformWin.cmake │ ├── Scripts │ │ ├── UpdateContents.py │ │ ├── check-xcfilelists.sh │ │ ├── cssmin.py │ │ ├── generate-combined-inspector-json.py │ │ ├── generate-derived-sources.sh │ │ ├── generate-js-builtins.py │ │ ├── generate-unified-sources.sh │ │ ├── generateIntlCanonicalizeLanguage.py │ │ ├── inline-and-minify-stylesheets-and-scripts.py │ │ ├── jsmin.py │ │ ├── lazywriter.py │ │ ├── make-js-file-arrays.py │ │ ├── postprocess-header-rule │ │ ├── tests │ │ │ └── builtins │ │ │ │ ├── JavaScriptCore-Builtin.Promise-Combined.js │ │ │ │ ├── JavaScriptCore-Builtin.Promise-Separate.js │ │ │ │ ├── JavaScriptCore-Builtin.prototype-Combined.js │ │ │ │ ├── JavaScriptCore-Builtin.prototype-Separate.js │ │ │ │ ├── JavaScriptCore-BuiltinConstructor-Combined.js │ │ │ │ ├── JavaScriptCore-BuiltinConstructor-Separate.js │ │ │ │ ├── JavaScriptCore-InternalClashingNames-Combined.js │ │ │ │ ├── WebCore-AnotherGuardedInternalBuiltin-Separate.js │ │ │ │ ├── WebCore-ArbitraryConditionalGuard-Separate.js │ │ │ │ ├── WebCore-DuplicateFlagAnnotation-Separate.js │ │ │ │ ├── WebCore-DuplicateKeyValueAnnotation-Separate.js │ │ │ │ ├── WebCore-GuardedBuiltin-Separate.js │ │ │ │ ├── WebCore-GuardedInternalBuiltin-Separate.js │ │ │ │ ├── WebCore-UnguardedBuiltin-Separate.js │ │ │ │ ├── WebCore-xmlCasingTest-Separate.js │ │ │ │ └── expected │ │ │ │ ├── JavaScriptCore-Builtin.Promise-Combined.js-result │ │ │ │ ├── JavaScriptCore-Builtin.Promise-Separate.js-result │ │ │ │ ├── JavaScriptCore-Builtin.prototype-Combined.js-result │ │ │ │ ├── JavaScriptCore-Builtin.prototype-Separate.js-result │ │ │ │ ├── JavaScriptCore-BuiltinConstructor-Combined.js-result │ │ │ │ ├── JavaScriptCore-BuiltinConstructor-Separate.js-result │ │ │ │ ├── JavaScriptCore-InternalClashingNames-Combined.js-error │ │ │ │ ├── JavaScriptCore-InternalClashingNames-Combined.js-result │ │ │ │ ├── WebCore-AnotherGuardedInternalBuiltin-Separate.js-result │ │ │ │ ├── WebCore-ArbitraryConditionalGuard-Separate.js-result │ │ │ │ ├── WebCore-DuplicateFlagAnnotation-Separate.js-error │ │ │ │ ├── WebCore-DuplicateKeyValueAnnotation-Separate.js-error │ │ │ │ ├── WebCore-GuardedBuiltin-Separate.js-result │ │ │ │ ├── WebCore-GuardedInternalBuiltin-Separate.js-result │ │ │ │ ├── WebCore-UnguardedBuiltin-Separate.js-result │ │ │ │ ├── WebCore-xmlCasingTest-Separate.js-result │ │ │ │ └── WebCoreJSBuiltins.h-result │ │ ├── wkbuiltins │ │ │ ├── __init__.py │ │ │ ├── builtins_generate_combined_header.py │ │ │ ├── builtins_generate_combined_implementation.py │ │ │ ├── builtins_generate_internals_wrapper_header.py │ │ │ ├── builtins_generate_internals_wrapper_implementation.py │ │ │ ├── builtins_generate_separate_header.py │ │ │ ├── builtins_generate_separate_implementation.py │ │ │ ├── builtins_generate_wrapper_header.py │ │ │ ├── builtins_generate_wrapper_implementation.py │ │ │ ├── builtins_generator.py │ │ │ ├── builtins_model.py │ │ │ ├── builtins_templates.py │ │ │ └── wkbuiltins.py │ │ └── xxd.pl │ ├── Sources.txt │ ├── SourcesCocoa.txt │ ├── SourcesGTK.txt │ ├── SourcesWPE.txt │ ├── UnifiedSources-output.xcfilelist │ ├── allow-jit-macOS.entitlements │ ├── assembler │ │ ├── ARM64Assembler.h │ │ ├── ARM64EAssembler.h │ │ ├── ARM64Registers.h │ │ ├── ARMv7Assembler.h │ │ ├── ARMv7Registers.h │ │ ├── AbortReason.h │ │ ├── AbstractMacroAssembler.cpp │ │ ├── AbstractMacroAssembler.h │ │ ├── AllowMacroScratchRegisterUsage.h │ │ ├── AllowMacroScratchRegisterUsageIf.h │ │ ├── AssemblerBuffer.h │ │ ├── AssemblerBufferWithConstantPool.h │ │ ├── AssemblerCommon.h │ │ ├── CPU.cpp │ │ ├── CPU.h │ │ ├── CodeLocation.h │ │ ├── DisallowMacroScratchRegisterUsage.h │ │ ├── LinkBuffer.cpp │ │ ├── LinkBuffer.h │ │ ├── MIPSAssembler.h │ │ ├── MIPSRegisters.h │ │ ├── MacroAssembler.cpp │ │ ├── MacroAssembler.h │ │ ├── MacroAssemblerARM64.cpp │ │ ├── MacroAssemblerARM64.h │ │ ├── MacroAssemblerARM64E.h │ │ ├── MacroAssemblerARMv7.cpp │ │ ├── MacroAssemblerARMv7.h │ │ ├── MacroAssemblerCodeRef.cpp │ │ ├── MacroAssemblerCodeRef.h │ │ ├── MacroAssemblerHelpers.h │ │ ├── MacroAssemblerMIPS.cpp │ │ ├── MacroAssemblerMIPS.h │ │ ├── MacroAssemblerPrinter.cpp │ │ ├── MacroAssemblerPrinter.h │ │ ├── MacroAssemblerX86.h │ │ ├── MacroAssemblerX86Common.cpp │ │ ├── MacroAssemblerX86Common.h │ │ ├── MacroAssemblerX86_64.h │ │ ├── MaxFrameExtentForSlowPathCall.h │ │ ├── PerfLog.cpp │ │ ├── PerfLog.h │ │ ├── Printer.cpp │ │ ├── Printer.h │ │ ├── ProbeContext.cpp │ │ ├── ProbeContext.h │ │ ├── ProbeFrame.h │ │ ├── ProbeStack.cpp │ │ ├── ProbeStack.h │ │ ├── RegisterInfo.h │ │ ├── X86Assembler.h │ │ ├── X86Registers.h │ │ ├── X86_64Registers.h │ │ └── testmasm.cpp │ ├── b3 │ │ ├── B3ArgumentRegValue.cpp │ │ ├── B3ArgumentRegValue.h │ │ ├── B3AtomicValue.cpp │ │ ├── B3AtomicValue.h │ │ ├── B3BackwardsCFG.h │ │ ├── B3BackwardsDominators.h │ │ ├── B3Bank.cpp │ │ ├── B3Bank.h │ │ ├── B3BasicBlock.cpp │ │ ├── B3BasicBlock.h │ │ ├── B3BasicBlockInlines.h │ │ ├── B3BasicBlockUtils.h │ │ ├── B3BlockInsertionSet.cpp │ │ ├── B3BlockInsertionSet.h │ │ ├── B3BlockWorklist.h │ │ ├── B3BottomProvider.h │ │ ├── B3BreakCriticalEdges.cpp │ │ ├── B3BreakCriticalEdges.h │ │ ├── B3CCallValue.cpp │ │ ├── B3CCallValue.h │ │ ├── B3CFG.h │ │ ├── B3CaseCollection.cpp │ │ ├── B3CaseCollection.h │ │ ├── B3CaseCollectionInlines.h │ │ ├── B3CheckSpecial.cpp │ │ ├── B3CheckSpecial.h │ │ ├── B3CheckValue.cpp │ │ ├── B3CheckValue.h │ │ ├── B3Common.cpp │ │ ├── B3Common.h │ │ ├── B3Commutativity.cpp │ │ ├── B3Commutativity.h │ │ ├── B3Compilation.cpp │ │ ├── B3Compilation.h │ │ ├── B3Compile.cpp │ │ ├── B3Compile.h │ │ ├── B3ComputeDivisionMagic.h │ │ ├── B3Const32Value.cpp │ │ ├── B3Const32Value.h │ │ ├── B3Const64Value.cpp │ │ ├── B3Const64Value.h │ │ ├── B3ConstDoubleValue.cpp │ │ ├── B3ConstDoubleValue.h │ │ ├── B3ConstFloatValue.cpp │ │ ├── B3ConstFloatValue.h │ │ ├── B3ConstPtrValue.h │ │ ├── B3ConstrainedValue.cpp │ │ ├── B3ConstrainedValue.h │ │ ├── B3DataSection.cpp │ │ ├── B3DataSection.h │ │ ├── B3Dominators.h │ │ ├── B3DuplicateTails.cpp │ │ ├── B3DuplicateTails.h │ │ ├── B3Effects.cpp │ │ ├── B3Effects.h │ │ ├── B3EliminateCommonSubexpressions.cpp │ │ ├── B3EliminateCommonSubexpressions.h │ │ ├── B3EliminateDeadCode.cpp │ │ ├── B3EliminateDeadCode.h │ │ ├── B3EnsureLoopPreHeaders.cpp │ │ ├── B3EnsureLoopPreHeaders.h │ │ ├── B3FenceValue.cpp │ │ ├── B3FenceValue.h │ │ ├── B3FixSSA.cpp │ │ ├── B3FixSSA.h │ │ ├── B3FoldPathConstants.cpp │ │ ├── B3FoldPathConstants.h │ │ ├── B3FrequencyClass.cpp │ │ ├── B3FrequencyClass.h │ │ ├── B3FrequentedBlock.h │ │ ├── B3Generate.cpp │ │ ├── B3Generate.h │ │ ├── B3GenericBlockInsertionSet.h │ │ ├── B3GenericFrequentedBlock.h │ │ ├── B3HeapRange.h │ │ ├── B3HoistLoopInvariantValues.cpp │ │ ├── B3HoistLoopInvariantValues.h │ │ ├── B3InferSwitches.cpp │ │ ├── B3InferSwitches.h │ │ ├── B3InsertionSet.cpp │ │ ├── B3InsertionSet.h │ │ ├── B3InsertionSetInlines.h │ │ ├── B3Kind.cpp │ │ ├── B3Kind.h │ │ ├── B3LegalizeMemoryOffsets.cpp │ │ ├── B3LegalizeMemoryOffsets.h │ │ ├── B3LowerMacros.cpp │ │ ├── B3LowerMacros.h │ │ ├── B3LowerMacrosAfterOptimizations.cpp │ │ ├── B3LowerMacrosAfterOptimizations.h │ │ ├── B3LowerToAir.cpp │ │ ├── B3LowerToAir.h │ │ ├── B3MathExtras.cpp │ │ ├── B3MathExtras.h │ │ ├── B3MemoryValue.cpp │ │ ├── B3MemoryValue.h │ │ ├── B3MemoryValueInlines.h │ │ ├── B3MoveConstants.cpp │ │ ├── B3MoveConstants.h │ │ ├── B3NativeTraits.h │ │ ├── B3NaturalLoops.h │ │ ├── B3OpaqueByproduct.h │ │ ├── B3OpaqueByproducts.cpp │ │ ├── B3OpaqueByproducts.h │ │ ├── B3Opcode.cpp │ │ ├── B3Opcode.h │ │ ├── B3OptimizeAssociativeExpressionTrees.cpp │ │ ├── B3OptimizeAssociativeExpressionTrees.h │ │ ├── B3Origin.cpp │ │ ├── B3Origin.h │ │ ├── B3OriginDump.cpp │ │ ├── B3OriginDump.h │ │ ├── B3PCToOriginMap.h │ │ ├── B3PatchpointSpecial.cpp │ │ ├── B3PatchpointSpecial.h │ │ ├── B3PatchpointValue.cpp │ │ ├── B3PatchpointValue.h │ │ ├── B3PhaseScope.cpp │ │ ├── B3PhaseScope.h │ │ ├── B3PhiChildren.cpp │ │ ├── B3PhiChildren.h │ │ ├── B3Procedure.cpp │ │ ├── B3Procedure.h │ │ ├── B3ProcedureInlines.h │ │ ├── B3PureCSE.cpp │ │ ├── B3PureCSE.h │ │ ├── B3ReduceDoubleToFloat.cpp │ │ ├── B3ReduceDoubleToFloat.h │ │ ├── B3ReduceStrength.cpp │ │ ├── B3ReduceStrength.h │ │ ├── B3SSACalculator.cpp │ │ ├── B3SSACalculator.h │ │ ├── B3SlotBaseValue.cpp │ │ ├── B3SlotBaseValue.h │ │ ├── B3SparseCollection.h │ │ ├── B3StackSlot.cpp │ │ ├── B3StackSlot.h │ │ ├── B3StackmapGenerationParams.cpp │ │ ├── B3StackmapGenerationParams.h │ │ ├── B3StackmapSpecial.cpp │ │ ├── B3StackmapSpecial.h │ │ ├── B3StackmapValue.cpp │ │ ├── B3StackmapValue.h │ │ ├── B3SuccessorCollection.h │ │ ├── B3SwitchCase.cpp │ │ ├── B3SwitchCase.h │ │ ├── B3SwitchValue.cpp │ │ ├── B3SwitchValue.h │ │ ├── B3TimingScope.h │ │ ├── B3Type.cpp │ │ ├── B3Type.h │ │ ├── B3TypeMap.h │ │ ├── B3UpsilonValue.cpp │ │ ├── B3UpsilonValue.h │ │ ├── B3UseCounts.cpp │ │ ├── B3UseCounts.h │ │ ├── B3Validate.cpp │ │ ├── B3Validate.h │ │ ├── B3Value.cpp │ │ ├── B3Value.h │ │ ├── B3ValueInlines.h │ │ ├── B3ValueKey.cpp │ │ ├── B3ValueKey.h │ │ ├── B3ValueKeyInlines.h │ │ ├── B3ValueRep.cpp │ │ ├── B3ValueRep.h │ │ ├── B3Variable.cpp │ │ ├── B3Variable.h │ │ ├── B3VariableLiveness.cpp │ │ ├── B3VariableLiveness.h │ │ ├── B3VariableValue.cpp │ │ ├── B3VariableValue.h │ │ ├── B3WasmAddressValue.cpp │ │ ├── B3WasmAddressValue.h │ │ ├── B3WasmBoundsCheckValue.cpp │ │ ├── B3WasmBoundsCheckValue.h │ │ ├── B3Width.cpp │ │ ├── B3Width.h │ │ ├── air │ │ │ ├── AirAllocateRegistersAndStackAndGenerateCode.cpp │ │ │ ├── AirAllocateRegistersAndStackAndGenerateCode.h │ │ │ ├── AirAllocateRegistersAndStackByLinearScan.cpp │ │ │ ├── AirAllocateRegistersAndStackByLinearScan.h │ │ │ ├── AirAllocateRegistersByGraphColoring.cpp │ │ │ ├── AirAllocateRegistersByGraphColoring.h │ │ │ ├── AirAllocateStackByGraphColoring.cpp │ │ │ ├── AirAllocateStackByGraphColoring.h │ │ │ ├── AirArg.cpp │ │ │ ├── AirArg.h │ │ │ ├── AirArgInlines.h │ │ │ ├── AirBasicBlock.cpp │ │ │ ├── AirBasicBlock.h │ │ │ ├── AirBlockInsertionSet.cpp │ │ │ ├── AirBlockInsertionSet.h │ │ │ ├── AirBlockWorklist.h │ │ │ ├── AirBreakCriticalEdges.cpp │ │ │ ├── AirBreakCriticalEdges.h │ │ │ ├── AirCCallSpecial.cpp │ │ │ ├── AirCCallSpecial.h │ │ │ ├── AirCCallingConvention.cpp │ │ │ ├── AirCCallingConvention.h │ │ │ ├── AirCFG.h │ │ │ ├── AirCode.cpp │ │ │ ├── AirCode.h │ │ │ ├── AirCustom.cpp │ │ │ ├── AirCustom.h │ │ │ ├── AirDisassembler.cpp │ │ │ ├── AirDisassembler.h │ │ │ ├── AirEliminateDeadCode.cpp │ │ │ ├── AirEliminateDeadCode.h │ │ │ ├── AirEmitShuffle.cpp │ │ │ ├── AirEmitShuffle.h │ │ │ ├── AirFixObviousSpills.cpp │ │ │ ├── AirFixObviousSpills.h │ │ │ ├── AirFixPartialRegisterStalls.cpp │ │ │ ├── AirFixPartialRegisterStalls.h │ │ │ ├── AirFixSpillsAfterTerminals.cpp │ │ │ ├── AirFixSpillsAfterTerminals.h │ │ │ ├── AirFormTable.h │ │ │ ├── AirFrequentedBlock.h │ │ │ ├── AirGenerate.cpp │ │ │ ├── AirGenerate.h │ │ │ ├── AirGenerated.cpp │ │ │ ├── AirGenerationContext.h │ │ │ ├── AirHandleCalleeSaves.cpp │ │ │ ├── AirHandleCalleeSaves.h │ │ │ ├── AirInsertionSet.cpp │ │ │ ├── AirInsertionSet.h │ │ │ ├── AirInst.cpp │ │ │ ├── AirInst.h │ │ │ ├── AirInstInlines.h │ │ │ ├── AirKind.cpp │ │ │ ├── AirKind.h │ │ │ ├── AirLiveness.h │ │ │ ├── AirLivenessAdapter.h │ │ │ ├── AirLogRegisterPressure.cpp │ │ │ ├── AirLogRegisterPressure.h │ │ │ ├── AirLowerAfterRegAlloc.cpp │ │ │ ├── AirLowerAfterRegAlloc.h │ │ │ ├── AirLowerEntrySwitch.cpp │ │ │ ├── AirLowerEntrySwitch.h │ │ │ ├── AirLowerMacros.cpp │ │ │ ├── AirLowerMacros.h │ │ │ ├── AirLowerStackArgs.cpp │ │ │ ├── AirLowerStackArgs.h │ │ │ ├── AirOpcode.opcodes │ │ │ ├── AirOptimizeBlockOrder.cpp │ │ │ ├── AirOptimizeBlockOrder.h │ │ │ ├── AirPadInterference.cpp │ │ │ ├── AirPadInterference.h │ │ │ ├── AirPhaseInsertionSet.cpp │ │ │ ├── AirPhaseInsertionSet.h │ │ │ ├── AirPhaseScope.cpp │ │ │ ├── AirPhaseScope.h │ │ │ ├── AirPrintSpecial.cpp │ │ │ ├── AirPrintSpecial.h │ │ │ ├── AirRegLiveness.cpp │ │ │ ├── AirRegLiveness.h │ │ │ ├── AirReportUsedRegisters.cpp │ │ │ ├── AirReportUsedRegisters.h │ │ │ ├── AirSimplifyCFG.cpp │ │ │ ├── AirSimplifyCFG.h │ │ │ ├── AirSpecial.cpp │ │ │ ├── AirSpecial.h │ │ │ ├── AirStackAllocation.cpp │ │ │ ├── AirStackAllocation.h │ │ │ ├── AirStackSlot.cpp │ │ │ ├── AirStackSlot.h │ │ │ ├── AirStackSlotKind.cpp │ │ │ ├── AirStackSlotKind.h │ │ │ ├── AirTmp.cpp │ │ │ ├── AirTmp.h │ │ │ ├── AirTmpInlines.h │ │ │ ├── AirTmpMap.h │ │ │ ├── AirTmpSet.h │ │ │ ├── AirTmpWidth.cpp │ │ │ ├── AirTmpWidth.h │ │ │ ├── AirUseCounts.h │ │ │ ├── AirValidate.cpp │ │ │ ├── AirValidate.h │ │ │ ├── opcode_generator.rb │ │ │ └── testair.cpp │ │ └── testb3.cpp │ ├── bindings │ │ ├── ScriptFunctionCall.cpp │ │ ├── ScriptFunctionCall.h │ │ ├── ScriptObject.cpp │ │ ├── ScriptObject.h │ │ ├── ScriptValue.cpp │ │ └── ScriptValue.h │ ├── builtins │ │ ├── ArrayConstructor.js │ │ ├── ArrayIteratorPrototype.js │ │ ├── ArrayPrototype.js │ │ ├── AsyncFromSyncIteratorPrototype.js │ │ ├── AsyncFunctionPrototype.js │ │ ├── AsyncGeneratorPrototype.js │ │ ├── AsyncIteratorPrototype.js │ │ ├── BuiltinExecutableCreator.cpp │ │ ├── BuiltinExecutableCreator.h │ │ ├── BuiltinExecutables.cpp │ │ ├── BuiltinExecutables.h │ │ ├── BuiltinNames.cpp │ │ ├── BuiltinNames.h │ │ ├── BuiltinUtils.h │ │ ├── DatePrototype.js │ │ ├── FunctionPrototype.js │ │ ├── GeneratorPrototype.js │ │ ├── GlobalObject.js │ │ ├── GlobalOperations.js │ │ ├── InspectorInstrumentationObject.js │ │ ├── InternalPromiseConstructor.js │ │ ├── IteratorHelpers.js │ │ ├── IteratorPrototype.js │ │ ├── MapIteratorPrototype.js │ │ ├── MapPrototype.js │ │ ├── ModuleLoader.js │ │ ├── NumberConstructor.js │ │ ├── ObjectConstructor.js │ │ ├── PromiseConstructor.js │ │ ├── PromiseOperations.js │ │ ├── PromisePrototype.js │ │ ├── ReflectObject.js │ │ ├── RegExpPrototype.js │ │ ├── RegExpStringIteratorPrototype.js │ │ ├── SetIteratorPrototype.js │ │ ├── SetPrototype.js │ │ ├── StringConstructor.js │ │ ├── StringIteratorPrototype.js │ │ ├── StringPrototype.js │ │ ├── TypedArrayConstructor.js │ │ ├── TypedArrayPrototype.js │ │ └── WebAssemblyPrototype.js │ ├── bytecode │ │ ├── AccessCase.cpp │ │ ├── AccessCase.h │ │ ├── AccessCaseSnippetParams.cpp │ │ ├── AccessCaseSnippetParams.h │ │ ├── AdaptiveInferredPropertyValueWatchpointBase.cpp │ │ ├── AdaptiveInferredPropertyValueWatchpointBase.h │ │ ├── ArithProfile.cpp │ │ ├── ArithProfile.h │ │ ├── ArrayAllocationProfile.cpp │ │ ├── ArrayAllocationProfile.h │ │ ├── ArrayProfile.cpp │ │ ├── ArrayProfile.h │ │ ├── ByValInfo.h │ │ ├── BytecodeBasicBlock.cpp │ │ ├── BytecodeBasicBlock.h │ │ ├── BytecodeConventions.h │ │ ├── BytecodeDumper.cpp │ │ ├── BytecodeDumper.h │ │ ├── BytecodeGeneratorification.cpp │ │ ├── BytecodeGeneratorification.h │ │ ├── BytecodeGraph.h │ │ ├── BytecodeIntrinsicRegistry.cpp │ │ ├── BytecodeIntrinsicRegistry.h │ │ ├── BytecodeKills.h │ │ ├── BytecodeList.rb │ │ ├── BytecodeLivenessAnalysis.cpp │ │ ├── BytecodeLivenessAnalysis.h │ │ ├── BytecodeLivenessAnalysisInlines.h │ │ ├── BytecodeRewriter.cpp │ │ ├── BytecodeRewriter.h │ │ ├── BytecodeUseDef.h │ │ ├── CallEdge.cpp │ │ ├── CallEdge.h │ │ ├── CallLinkInfo.cpp │ │ ├── CallLinkInfo.h │ │ ├── CallLinkStatus.cpp │ │ ├── CallLinkStatus.h │ │ ├── CallMode.cpp │ │ ├── CallMode.h │ │ ├── CallVariant.cpp │ │ ├── CallVariant.h │ │ ├── CodeBlock.cpp │ │ ├── CodeBlock.h │ │ ├── CodeBlockHash.cpp │ │ ├── CodeBlockHash.h │ │ ├── CodeBlockInlines.h │ │ ├── CodeBlockJettisoningWatchpoint.cpp │ │ ├── CodeBlockJettisoningWatchpoint.h │ │ ├── CodeBlockWithJITType.h │ │ ├── CodeOrigin.cpp │ │ ├── CodeOrigin.h │ │ ├── CodeType.cpp │ │ ├── CodeType.h │ │ ├── ComplexGetStatus.cpp │ │ ├── ComplexGetStatus.h │ │ ├── DFGExitProfile.cpp │ │ ├── DFGExitProfile.h │ │ ├── DataFormat.cpp │ │ ├── DataFormat.h │ │ ├── DeferredCompilationCallback.cpp │ │ ├── DeferredCompilationCallback.h │ │ ├── DeferredSourceDump.cpp │ │ ├── DeferredSourceDump.h │ │ ├── DirectEvalCodeCache.cpp │ │ ├── DirectEvalCodeCache.h │ │ ├── EvalCodeBlock.cpp │ │ ├── EvalCodeBlock.h │ │ ├── ExecutableInfo.h │ │ ├── ExecutableToCodeBlockEdge.cpp │ │ ├── ExecutableToCodeBlockEdge.h │ │ ├── ExecutionCounter.cpp │ │ ├── ExecutionCounter.h │ │ ├── ExitFlag.cpp │ │ ├── ExitFlag.h │ │ ├── ExitKind.cpp │ │ ├── ExitKind.h │ │ ├── ExitingInlineKind.cpp │ │ ├── ExitingInlineKind.h │ │ ├── ExitingJITType.cpp │ │ ├── ExitingJITType.h │ │ ├── ExpressionRangeInfo.h │ │ ├── Fits.h │ │ ├── FullBytecodeLiveness.h │ │ ├── FullCodeOrigin.cpp │ │ ├── FullCodeOrigin.h │ │ ├── FunctionCodeBlock.cpp │ │ ├── FunctionCodeBlock.h │ │ ├── GetByIdMetadata.h │ │ ├── GetByIdStatus.cpp │ │ ├── GetByIdStatus.h │ │ ├── GetByIdVariant.cpp │ │ ├── GetByIdVariant.h │ │ ├── GetterSetterAccessCase.cpp │ │ ├── GetterSetterAccessCase.h │ │ ├── GlobalCodeBlock.h │ │ ├── HandlerInfo.h │ │ ├── ICStatusMap.cpp │ │ ├── ICStatusMap.h │ │ ├── ICStatusUtils.cpp │ │ ├── ICStatusUtils.h │ │ ├── InByIdStatus.cpp │ │ ├── InByIdStatus.h │ │ ├── InByIdVariant.cpp │ │ ├── InByIdVariant.h │ │ ├── InlineAccess.cpp │ │ ├── InlineAccess.h │ │ ├── InlineCallFrame.cpp │ │ ├── InlineCallFrame.h │ │ ├── InlineCallFrameSet.cpp │ │ ├── InlineCallFrameSet.h │ │ ├── InstanceOfAccessCase.cpp │ │ ├── InstanceOfAccessCase.h │ │ ├── InstanceOfStatus.cpp │ │ ├── InstanceOfStatus.h │ │ ├── InstanceOfVariant.cpp │ │ ├── InstanceOfVariant.h │ │ ├── Instruction.h │ │ ├── InstructionStream.cpp │ │ ├── InstructionStream.h │ │ ├── InternalFunctionAllocationProfile.h │ │ ├── IntrinsicGetterAccessCase.cpp │ │ ├── IntrinsicGetterAccessCase.h │ │ ├── JumpTable.cpp │ │ ├── JumpTable.h │ │ ├── LLIntCallLinkInfo.h │ │ ├── LLIntPrototypeLoadAdaptiveStructureWatchpoint.cpp │ │ ├── LLIntPrototypeLoadAdaptiveStructureWatchpoint.h │ │ ├── LazyOperandValueProfile.cpp │ │ ├── LazyOperandValueProfile.h │ │ ├── MetadataTable.cpp │ │ ├── MetadataTable.h │ │ ├── MethodOfGettingAValueProfile.cpp │ │ ├── MethodOfGettingAValueProfile.h │ │ ├── ModuleNamespaceAccessCase.cpp │ │ ├── ModuleNamespaceAccessCase.h │ │ ├── ModuleProgramCodeBlock.cpp │ │ ├── ModuleProgramCodeBlock.h │ │ ├── ObjectAllocationProfile.h │ │ ├── ObjectAllocationProfileInlines.h │ │ ├── ObjectPropertyCondition.cpp │ │ ├── ObjectPropertyCondition.h │ │ ├── ObjectPropertyConditionSet.cpp │ │ ├── ObjectPropertyConditionSet.h │ │ ├── Opcode.cpp │ │ ├── Opcode.h │ │ ├── OpcodeInlines.h │ │ ├── OpcodeSize.h │ │ ├── Operands.h │ │ ├── OperandsInlines.h │ │ ├── ParseHash.cpp │ │ ├── ParseHash.h │ │ ├── PolyProtoAccessChain.cpp │ │ ├── PolyProtoAccessChain.h │ │ ├── PolymorphicAccess.cpp │ │ ├── PolymorphicAccess.h │ │ ├── PreciseJumpTargets.cpp │ │ ├── PreciseJumpTargets.h │ │ ├── PreciseJumpTargetsInlines.h │ │ ├── ProgramCodeBlock.cpp │ │ ├── ProgramCodeBlock.h │ │ ├── PropertyCondition.cpp │ │ ├── PropertyCondition.h │ │ ├── ProxyableAccessCase.cpp │ │ ├── ProxyableAccessCase.h │ │ ├── PutByIdFlags.cpp │ │ ├── PutByIdFlags.h │ │ ├── PutByIdStatus.cpp │ │ ├── PutByIdStatus.h │ │ ├── PutByIdVariant.cpp │ │ ├── PutByIdVariant.h │ │ ├── PutKind.h │ │ ├── RecordedStatuses.cpp │ │ ├── RecordedStatuses.h │ │ ├── ReduceWhitespace.cpp │ │ ├── ReduceWhitespace.h │ │ ├── SpecialPointer.cpp │ │ ├── SpecialPointer.h │ │ ├── SpeculatedType.cpp │ │ ├── SpeculatedType.h │ │ ├── StructureSet.cpp │ │ ├── StructureSet.h │ │ ├── StructureStubClearingWatchpoint.cpp │ │ ├── StructureStubClearingWatchpoint.h │ │ ├── StructureStubInfo.cpp │ │ ├── StructureStubInfo.h │ │ ├── StubInfoSummary.cpp │ │ ├── StubInfoSummary.h │ │ ├── SuperSampler.cpp │ │ ├── SuperSampler.h │ │ ├── TerminatedCodeOrigin.h │ │ ├── ToThisStatus.cpp │ │ ├── ToThisStatus.h │ │ ├── TrackedReferences.cpp │ │ ├── TrackedReferences.h │ │ ├── TypeLocation.h │ │ ├── UnlinkedCodeBlock.cpp │ │ ├── UnlinkedCodeBlock.h │ │ ├── UnlinkedEvalCodeBlock.cpp │ │ ├── UnlinkedEvalCodeBlock.h │ │ ├── UnlinkedFunctionCodeBlock.cpp │ │ ├── UnlinkedFunctionCodeBlock.h │ │ ├── UnlinkedFunctionExecutable.cpp │ │ ├── UnlinkedFunctionExecutable.h │ │ ├── UnlinkedGlobalCodeBlock.h │ │ ├── UnlinkedMetadataTable.cpp │ │ ├── UnlinkedMetadataTable.h │ │ ├── UnlinkedMetadataTableInlines.h │ │ ├── UnlinkedModuleProgramCodeBlock.cpp │ │ ├── UnlinkedModuleProgramCodeBlock.h │ │ ├── UnlinkedProgramCodeBlock.cpp │ │ ├── UnlinkedProgramCodeBlock.h │ │ ├── ValueProfile.h │ │ ├── ValueRecovery.cpp │ │ ├── ValueRecovery.h │ │ ├── VariableWriteFireDetail.cpp │ │ ├── VariableWriteFireDetail.h │ │ ├── VirtualRegister.cpp │ │ ├── VirtualRegister.h │ │ ├── Watchpoint.cpp │ │ └── Watchpoint.h │ ├── bytecompiler │ │ ├── BytecodeGenerator.cpp │ │ ├── BytecodeGenerator.h │ │ ├── Label.h │ │ ├── LabelScope.h │ │ ├── NodesCodegen.cpp │ │ ├── ProfileTypeBytecodeFlag.cpp │ │ ├── ProfileTypeBytecodeFlag.h │ │ ├── RegisterID.h │ │ ├── StaticPropertyAnalysis.h │ │ ├── StaticPropertyAnalyzer.h │ │ └── SuperSamplerBytecodeScope.h │ ├── config.h │ ├── create_hash_table │ ├── debugger │ │ ├── Breakpoint.h │ │ ├── Debugger.cpp │ │ ├── Debugger.h │ │ ├── DebuggerCallFrame.cpp │ │ ├── DebuggerCallFrame.h │ │ ├── DebuggerEvalEnabler.h │ │ ├── DebuggerLocation.cpp │ │ ├── DebuggerLocation.h │ │ ├── DebuggerParseData.cpp │ │ ├── DebuggerParseData.h │ │ ├── DebuggerPrimitives.h │ │ ├── DebuggerScope.cpp │ │ ├── DebuggerScope.h │ │ └── ScriptProfilingScope.h │ ├── dfg │ │ ├── DFGAbstractHeap.cpp │ │ ├── DFGAbstractHeap.h │ │ ├── DFGAbstractInterpreter.h │ │ ├── DFGAbstractInterpreterClobberState.cpp │ │ ├── DFGAbstractInterpreterClobberState.h │ │ ├── DFGAbstractInterpreterInlines.h │ │ ├── DFGAbstractValue.cpp │ │ ├── DFGAbstractValue.h │ │ ├── DFGAbstractValueClobberEpoch.cpp │ │ ├── DFGAbstractValueClobberEpoch.h │ │ ├── DFGAdaptiveInferredPropertyValueWatchpoint.cpp │ │ ├── DFGAdaptiveInferredPropertyValueWatchpoint.h │ │ ├── DFGAdaptiveStructureWatchpoint.cpp │ │ ├── DFGAdaptiveStructureWatchpoint.h │ │ ├── DFGAdjacencyList.h │ │ ├── DFGArgumentPosition.h │ │ ├── DFGArgumentsEliminationPhase.cpp │ │ ├── DFGArgumentsEliminationPhase.h │ │ ├── DFGArgumentsUtilities.cpp │ │ ├── DFGArgumentsUtilities.h │ │ ├── DFGArithMode.cpp │ │ ├── DFGArithMode.h │ │ ├── DFGArrayMode.cpp │ │ ├── DFGArrayMode.h │ │ ├── DFGArrayifySlowPathGenerator.h │ │ ├── DFGAtTailAbstractState.cpp │ │ ├── DFGAtTailAbstractState.h │ │ ├── DFGAvailability.cpp │ │ ├── DFGAvailability.h │ │ ├── DFGAvailabilityMap.cpp │ │ ├── DFGAvailabilityMap.h │ │ ├── DFGBackwardsCFG.h │ │ ├── DFGBackwardsDominators.h │ │ ├── DFGBackwardsPropagationPhase.cpp │ │ ├── DFGBackwardsPropagationPhase.h │ │ ├── DFGBasicBlock.cpp │ │ ├── DFGBasicBlock.h │ │ ├── DFGBasicBlockInlines.h │ │ ├── DFGBlockInsertionSet.cpp │ │ ├── DFGBlockInsertionSet.h │ │ ├── DFGBlockMap.h │ │ ├── DFGBlockMapInlines.h │ │ ├── DFGBlockSet.cpp │ │ ├── DFGBlockSet.h │ │ ├── DFGBlockSetInlines.h │ │ ├── DFGBlockWorklist.h │ │ ├── DFGBranchDirection.h │ │ ├── DFGByteCodeParser.cpp │ │ ├── DFGByteCodeParser.h │ │ ├── DFGCFAPhase.cpp │ │ ├── DFGCFAPhase.h │ │ ├── DFGCFG.h │ │ ├── DFGCFGSimplificationPhase.cpp │ │ ├── DFGCFGSimplificationPhase.h │ │ ├── DFGCPSRethreadingPhase.cpp │ │ ├── DFGCPSRethreadingPhase.h │ │ ├── DFGCSEPhase.cpp │ │ ├── DFGCSEPhase.h │ │ ├── DFGCallArrayAllocatorSlowPathGenerator.h │ │ ├── DFGCallCreateDirectArgumentsSlowPathGenerator.h │ │ ├── DFGCapabilities.cpp │ │ ├── DFGCapabilities.h │ │ ├── DFGCleanUpPhase.cpp │ │ ├── DFGCleanUpPhase.h │ │ ├── DFGClobberSet.cpp │ │ ├── DFGClobberSet.h │ │ ├── DFGClobberize.cpp │ │ ├── DFGClobberize.h │ │ ├── DFGClobbersExitState.cpp │ │ ├── DFGClobbersExitState.h │ │ ├── DFGCombinedLiveness.cpp │ │ ├── DFGCombinedLiveness.h │ │ ├── DFGCommon.cpp │ │ ├── DFGCommon.h │ │ ├── DFGCommonData.cpp │ │ ├── DFGCommonData.h │ │ ├── DFGCompilationKey.cpp │ │ ├── DFGCompilationKey.h │ │ ├── DFGCompilationMode.cpp │ │ ├── DFGCompilationMode.h │ │ ├── DFGConstantFoldingPhase.cpp │ │ ├── DFGConstantFoldingPhase.h │ │ ├── DFGConstantHoistingPhase.cpp │ │ ├── DFGConstantHoistingPhase.h │ │ ├── DFGControlEquivalenceAnalysis.h │ │ ├── DFGCriticalEdgeBreakingPhase.cpp │ │ ├── DFGCriticalEdgeBreakingPhase.h │ │ ├── DFGDCEPhase.cpp │ │ ├── DFGDCEPhase.h │ │ ├── DFGDesiredGlobalProperties.cpp │ │ ├── DFGDesiredGlobalProperties.h │ │ ├── DFGDesiredGlobalProperty.h │ │ ├── DFGDesiredIdentifiers.cpp │ │ ├── DFGDesiredIdentifiers.h │ │ ├── DFGDesiredTransitions.cpp │ │ ├── DFGDesiredTransitions.h │ │ ├── DFGDesiredWatchpoints.cpp │ │ ├── DFGDesiredWatchpoints.h │ │ ├── DFGDesiredWeakReferences.cpp │ │ ├── DFGDesiredWeakReferences.h │ │ ├── DFGDisassembler.cpp │ │ ├── DFGDisassembler.h │ │ ├── DFGDoesGC.cpp │ │ ├── DFGDoesGC.h │ │ ├── DFGDominators.h │ │ ├── DFGDoubleFormatState.h │ │ ├── DFGDriver.cpp │ │ ├── DFGDriver.h │ │ ├── DFGEdge.cpp │ │ ├── DFGEdge.h │ │ ├── DFGEdgeDominates.h │ │ ├── DFGEpoch.cpp │ │ ├── DFGEpoch.h │ │ ├── DFGFailedFinalizer.cpp │ │ ├── DFGFailedFinalizer.h │ │ ├── DFGFiltrationResult.h │ │ ├── DFGFinalizer.cpp │ │ ├── DFGFinalizer.h │ │ ├── DFGFixupPhase.cpp │ │ ├── DFGFixupPhase.h │ │ ├── DFGFlowIndexing.cpp │ │ ├── DFGFlowIndexing.h │ │ ├── DFGFlowMap.h │ │ ├── DFGFlushFormat.cpp │ │ ├── DFGFlushFormat.h │ │ ├── DFGFlushedAt.cpp │ │ ├── DFGFlushedAt.h │ │ ├── DFGForAllKills.h │ │ ├── DFGFrozenValue.cpp │ │ ├── DFGFrozenValue.h │ │ ├── DFGGenerationInfo.h │ │ ├── DFGGraph.cpp │ │ ├── DFGGraph.h │ │ ├── DFGGraphSafepoint.cpp │ │ ├── DFGGraphSafepoint.h │ │ ├── DFGHeapLocation.cpp │ │ ├── DFGHeapLocation.h │ │ ├── DFGInPlaceAbstractState.cpp │ │ ├── DFGInPlaceAbstractState.h │ │ ├── DFGInlineCacheWrapper.h │ │ ├── DFGInlineCacheWrapperInlines.h │ │ ├── DFGInsertionSet.cpp │ │ ├── DFGInsertionSet.h │ │ ├── DFGIntegerCheckCombiningPhase.cpp │ │ ├── DFGIntegerCheckCombiningPhase.h │ │ ├── DFGIntegerRangeOptimizationPhase.cpp │ │ ├── DFGIntegerRangeOptimizationPhase.h │ │ ├── DFGInvalidationPointInjectionPhase.cpp │ │ ├── DFGInvalidationPointInjectionPhase.h │ │ ├── DFGJITCode.cpp │ │ ├── DFGJITCode.h │ │ ├── DFGJITCompiler.cpp │ │ ├── DFGJITCompiler.h │ │ ├── DFGJITFinalizer.cpp │ │ ├── DFGJITFinalizer.h │ │ ├── DFGJumpReplacement.cpp │ │ ├── DFGJumpReplacement.h │ │ ├── DFGLICMPhase.cpp │ │ ├── DFGLICMPhase.h │ │ ├── DFGLazyJSValue.cpp │ │ ├── DFGLazyJSValue.h │ │ ├── DFGLazyNode.cpp │ │ ├── DFGLazyNode.h │ │ ├── DFGLiveCatchVariablePreservationPhase.cpp │ │ ├── DFGLiveCatchVariablePreservationPhase.h │ │ ├── DFGLivenessAnalysisPhase.cpp │ │ ├── DFGLivenessAnalysisPhase.h │ │ ├── DFGLoopPreHeaderCreationPhase.cpp │ │ ├── DFGLoopPreHeaderCreationPhase.h │ │ ├── DFGMaximalFlushInsertionPhase.cpp │ │ ├── DFGMaximalFlushInsertionPhase.h │ │ ├── DFGMayExit.cpp │ │ ├── DFGMayExit.h │ │ ├── DFGMinifiedGraph.cpp │ │ ├── DFGMinifiedGraph.h │ │ ├── DFGMinifiedID.h │ │ ├── DFGMinifiedIDInlines.h │ │ ├── DFGMinifiedNode.cpp │ │ ├── DFGMinifiedNode.h │ │ ├── DFGMovHintRemovalPhase.cpp │ │ ├── DFGMovHintRemovalPhase.h │ │ ├── DFGMultiGetByOffsetData.cpp │ │ ├── DFGMultiGetByOffsetData.h │ │ ├── DFGNaturalLoops.h │ │ ├── DFGNode.cpp │ │ ├── DFGNode.h │ │ ├── DFGNodeAbstractValuePair.cpp │ │ ├── DFGNodeAbstractValuePair.h │ │ ├── DFGNodeFlags.cpp │ │ ├── DFGNodeFlags.h │ │ ├── DFGNodeFlowProjection.cpp │ │ ├── DFGNodeFlowProjection.h │ │ ├── DFGNodeOrigin.cpp │ │ ├── DFGNodeOrigin.h │ │ ├── DFGNodeType.h │ │ ├── DFGNullAbstractState.h │ │ ├── DFGOSRAvailabilityAnalysisPhase.cpp │ │ ├── DFGOSRAvailabilityAnalysisPhase.h │ │ ├── DFGOSREntry.cpp │ │ ├── DFGOSREntry.h │ │ ├── DFGOSREntrypointCreationPhase.cpp │ │ ├── DFGOSREntrypointCreationPhase.h │ │ ├── DFGOSRExit.cpp │ │ ├── DFGOSRExit.h │ │ ├── DFGOSRExitBase.cpp │ │ ├── DFGOSRExitBase.h │ │ ├── DFGOSRExitCompilationInfo.h │ │ ├── DFGOSRExitCompilerCommon.cpp │ │ ├── DFGOSRExitCompilerCommon.h │ │ ├── DFGOSRExitFuzz.cpp │ │ ├── DFGOSRExitFuzz.h │ │ ├── DFGOSRExitJumpPlaceholder.cpp │ │ ├── DFGOSRExitJumpPlaceholder.h │ │ ├── DFGOSRExitPreparation.cpp │ │ ├── DFGOSRExitPreparation.h │ │ ├── DFGObjectAllocationSinkingPhase.cpp │ │ ├── DFGObjectAllocationSinkingPhase.h │ │ ├── DFGObjectMaterializationData.cpp │ │ ├── DFGObjectMaterializationData.h │ │ ├── DFGOpInfo.h │ │ ├── DFGOperations.cpp │ │ ├── DFGOperations.h │ │ ├── DFGPhantomInsertionPhase.cpp │ │ ├── DFGPhantomInsertionPhase.h │ │ ├── DFGPhase.cpp │ │ ├── DFGPhase.h │ │ ├── DFGPhiChildren.cpp │ │ ├── DFGPhiChildren.h │ │ ├── DFGPlan.cpp │ │ ├── DFGPlan.h │ │ ├── DFGPlanInlines.h │ │ ├── DFGPrePostNumbering.cpp │ │ ├── DFGPrePostNumbering.h │ │ ├── DFGPreciseLocalClobberize.h │ │ ├── DFGPredictionInjectionPhase.cpp │ │ ├── DFGPredictionInjectionPhase.h │ │ ├── DFGPredictionPropagationPhase.cpp │ │ ├── DFGPredictionPropagationPhase.h │ │ ├── DFGPromotedHeapLocation.cpp │ │ ├── DFGPromotedHeapLocation.h │ │ ├── DFGPropertyTypeKey.h │ │ ├── DFGPureValue.cpp │ │ ├── DFGPureValue.h │ │ ├── DFGPutStackSinkingPhase.cpp │ │ ├── DFGPutStackSinkingPhase.h │ │ ├── DFGRegisterBank.h │ │ ├── DFGRegisteredStructure.h │ │ ├── DFGRegisteredStructureSet.cpp │ │ ├── DFGRegisteredStructureSet.h │ │ ├── DFGSSACalculator.cpp │ │ ├── DFGSSACalculator.h │ │ ├── DFGSSAConversionPhase.cpp │ │ ├── DFGSSAConversionPhase.h │ │ ├── DFGSSALoweringPhase.cpp │ │ ├── DFGSSALoweringPhase.h │ │ ├── DFGSafeToExecute.h │ │ ├── DFGSafepoint.cpp │ │ ├── DFGSafepoint.h │ │ ├── DFGSaneStringGetByValSlowPathGenerator.h │ │ ├── DFGScannable.h │ │ ├── DFGScoreBoard.h │ │ ├── DFGSilentRegisterSavePlan.h │ │ ├── DFGSlowPathGenerator.h │ │ ├── DFGSnippetParams.cpp │ │ ├── DFGSnippetParams.h │ │ ├── DFGSpeculativeJIT.cpp │ │ ├── DFGSpeculativeJIT.h │ │ ├── DFGSpeculativeJIT32_64.cpp │ │ ├── DFGSpeculativeJIT64.cpp │ │ ├── DFGStackLayoutPhase.cpp │ │ ├── DFGStackLayoutPhase.h │ │ ├── DFGStaticExecutionCountEstimationPhase.cpp │ │ ├── DFGStaticExecutionCountEstimationPhase.h │ │ ├── DFGStoreBarrierClusteringPhase.cpp │ │ ├── DFGStoreBarrierClusteringPhase.h │ │ ├── DFGStoreBarrierInsertionPhase.cpp │ │ ├── DFGStoreBarrierInsertionPhase.h │ │ ├── DFGStrengthReductionPhase.cpp │ │ ├── DFGStrengthReductionPhase.h │ │ ├── DFGStructureAbstractValue.cpp │ │ ├── DFGStructureAbstractValue.h │ │ ├── DFGStructureClobberState.h │ │ ├── DFGThreadData.cpp │ │ ├── DFGThreadData.h │ │ ├── DFGThunks.cpp │ │ ├── DFGThunks.h │ │ ├── DFGTierUpCheckInjectionPhase.cpp │ │ ├── DFGTierUpCheckInjectionPhase.h │ │ ├── DFGToFTLDeferredCompilationCallback.cpp │ │ ├── DFGToFTLDeferredCompilationCallback.h │ │ ├── DFGToFTLForOSREntryDeferredCompilationCallback.cpp │ │ ├── DFGToFTLForOSREntryDeferredCompilationCallback.h │ │ ├── DFGTransition.cpp │ │ ├── DFGTransition.h │ │ ├── DFGTypeCheckHoistingPhase.cpp │ │ ├── DFGTypeCheckHoistingPhase.h │ │ ├── DFGUnificationPhase.cpp │ │ ├── DFGUnificationPhase.h │ │ ├── DFGUseKind.cpp │ │ ├── DFGUseKind.h │ │ ├── DFGValidate.cpp │ │ ├── DFGValidate.h │ │ ├── DFGValueRepReductionPhase.cpp │ │ ├── DFGValueRepReductionPhase.h │ │ ├── DFGValueSource.cpp │ │ ├── DFGValueSource.h │ │ ├── DFGValueStrength.cpp │ │ ├── DFGValueStrength.h │ │ ├── DFGVarargsForwardingPhase.cpp │ │ ├── DFGVarargsForwardingPhase.h │ │ ├── DFGVariableAccessData.cpp │ │ ├── DFGVariableAccessData.h │ │ ├── DFGVariableAccessDataDump.cpp │ │ ├── DFGVariableAccessDataDump.h │ │ ├── DFGVariableEvent.cpp │ │ ├── DFGVariableEvent.h │ │ ├── DFGVariableEventStream.cpp │ │ ├── DFGVariableEventStream.h │ │ ├── DFGVirtualRegisterAllocationPhase.cpp │ │ ├── DFGVirtualRegisterAllocationPhase.h │ │ ├── DFGWatchpointCollectionPhase.cpp │ │ ├── DFGWatchpointCollectionPhase.h │ │ ├── DFGWorklist.cpp │ │ ├── DFGWorklist.h │ │ ├── DFGWorklistInlines.h │ │ └── testdfg.cpp │ ├── disassembler │ │ ├── ARM64 │ │ │ ├── A64DOpcode.cpp │ │ │ └── A64DOpcode.h │ │ ├── ARM64Disassembler.cpp │ │ ├── CapstoneDisassembler.cpp │ │ ├── Disassembler.cpp │ │ ├── Disassembler.h │ │ ├── UDis86Disassembler.cpp │ │ ├── UDis86Disassembler.h │ │ ├── X86Disassembler.cpp │ │ └── udis86 │ │ │ ├── differences.txt │ │ │ ├── optable.xml │ │ │ ├── ud_itab.py │ │ │ ├── ud_opcode.py │ │ │ ├── udis86.c │ │ │ ├── udis86.h │ │ │ ├── udis86_decode.c │ │ │ ├── udis86_decode.h │ │ │ ├── udis86_extern.h │ │ │ ├── udis86_itab_holder.c │ │ │ ├── udis86_syn-att.c │ │ │ ├── udis86_syn-intel.c │ │ │ ├── udis86_syn.c │ │ │ ├── udis86_syn.h │ │ │ ├── udis86_types.h │ │ │ └── udis86_udint.h │ ├── domjit │ │ ├── DOMJITAbstractHeap.cpp │ │ ├── DOMJITAbstractHeap.h │ │ ├── DOMJITCallDOMGetterSnippet.h │ │ ├── DOMJITEffect.h │ │ ├── DOMJITGetterSetter.h │ │ ├── DOMJITHeapRange.cpp │ │ ├── DOMJITHeapRange.h │ │ └── DOMJITSignature.h │ ├── dynbench.cpp │ ├── entitlements.plist │ ├── features.json │ ├── framework.sb │ ├── ftl │ │ ├── FTLAbbreviatedTypes.h │ │ ├── FTLAbstractHeap.cpp │ │ ├── FTLAbstractHeap.h │ │ ├── FTLAbstractHeapRepository.cpp │ │ ├── FTLAbstractHeapRepository.h │ │ ├── FTLAvailableRecovery.cpp │ │ ├── FTLAvailableRecovery.h │ │ ├── FTLCapabilities.cpp │ │ ├── FTLCapabilities.h │ │ ├── FTLCommonValues.cpp │ │ ├── FTLCommonValues.h │ │ ├── FTLCompile.cpp │ │ ├── FTLCompile.h │ │ ├── FTLExceptionTarget.cpp │ │ ├── FTLExceptionTarget.h │ │ ├── FTLExitArgument.cpp │ │ ├── FTLExitArgument.h │ │ ├── FTLExitArgumentForOperand.cpp │ │ ├── FTLExitArgumentForOperand.h │ │ ├── FTLExitPropertyValue.cpp │ │ ├── FTLExitPropertyValue.h │ │ ├── FTLExitTimeObjectMaterialization.cpp │ │ ├── FTLExitTimeObjectMaterialization.h │ │ ├── FTLExitValue.cpp │ │ ├── FTLExitValue.h │ │ ├── FTLFail.cpp │ │ ├── FTLFail.h │ │ ├── FTLForOSREntryJITCode.cpp │ │ ├── FTLForOSREntryJITCode.h │ │ ├── FTLFormattedValue.h │ │ ├── FTLGeneratedFunction.h │ │ ├── FTLJITCode.cpp │ │ ├── FTLJITCode.h │ │ ├── FTLJITFinalizer.cpp │ │ ├── FTLJITFinalizer.h │ │ ├── FTLLazySlowPath.cpp │ │ ├── FTLLazySlowPath.h │ │ ├── FTLLazySlowPathCall.h │ │ ├── FTLLink.cpp │ │ ├── FTLLink.h │ │ ├── FTLLocation.cpp │ │ ├── FTLLocation.h │ │ ├── FTLLowerDFGToB3.cpp │ │ ├── FTLLowerDFGToB3.h │ │ ├── FTLLoweredNodeValue.h │ │ ├── FTLOSREntry.cpp │ │ ├── FTLOSREntry.h │ │ ├── FTLOSRExit.cpp │ │ ├── FTLOSRExit.h │ │ ├── FTLOSRExitCompiler.cpp │ │ ├── FTLOSRExitCompiler.h │ │ ├── FTLOSRExitHandle.cpp │ │ ├── FTLOSRExitHandle.h │ │ ├── FTLOperations.cpp │ │ ├── FTLOperations.h │ │ ├── FTLOutput.cpp │ │ ├── FTLOutput.h │ │ ├── FTLPatchpointExceptionHandle.cpp │ │ ├── FTLPatchpointExceptionHandle.h │ │ ├── FTLRecoveryOpcode.cpp │ │ ├── FTLRecoveryOpcode.h │ │ ├── FTLSaveRestore.cpp │ │ ├── FTLSaveRestore.h │ │ ├── FTLSlowPathCall.cpp │ │ ├── FTLSlowPathCall.h │ │ ├── FTLSlowPathCallKey.cpp │ │ ├── FTLSlowPathCallKey.h │ │ ├── FTLSnippetParams.cpp │ │ ├── FTLSnippetParams.h │ │ ├── FTLStackmapArgumentList.h │ │ ├── FTLState.cpp │ │ ├── FTLState.h │ │ ├── FTLSwitchCase.h │ │ ├── FTLThunks.cpp │ │ ├── FTLThunks.h │ │ ├── FTLTypedPointer.h │ │ ├── FTLValueFromBlock.h │ │ ├── FTLValueRange.cpp │ │ ├── FTLValueRange.h │ │ ├── FTLWeight.h │ │ └── FTLWeightedTarget.h │ ├── generator │ │ ├── Argument.rb │ │ ├── Assertion.rb │ │ ├── DSL.rb │ │ ├── Fits.rb │ │ ├── GeneratedFile.rb │ │ ├── Metadata.rb │ │ ├── Opcode.rb │ │ ├── OpcodeGroup.rb │ │ ├── Options.rb │ │ ├── Section.rb │ │ ├── Template.rb │ │ ├── Type.rb │ │ └── main.rb │ ├── heap │ │ ├── AlignedMemoryAllocator.cpp │ │ ├── AlignedMemoryAllocator.h │ │ ├── AllocatingScope.h │ │ ├── AllocationFailureMode.h │ │ ├── Allocator.cpp │ │ ├── Allocator.h │ │ ├── AllocatorForMode.h │ │ ├── AllocatorInlines.h │ │ ├── AtomIndices.h │ │ ├── BlockDirectory.cpp │ │ ├── BlockDirectory.h │ │ ├── BlockDirectoryInlines.h │ │ ├── CellAttributes.cpp │ │ ├── CellAttributes.h │ │ ├── CellContainer.cpp │ │ ├── CellContainer.h │ │ ├── CellContainerInlines.h │ │ ├── CellState.h │ │ ├── CodeBlockSet.cpp │ │ ├── CodeBlockSet.h │ │ ├── CodeBlockSetInlines.h │ │ ├── CollectingScope.h │ │ ├── CollectionScope.cpp │ │ ├── CollectionScope.h │ │ ├── CollectorPhase.cpp │ │ ├── CollectorPhase.h │ │ ├── CompleteSubspace.cpp │ │ ├── CompleteSubspace.h │ │ ├── CompleteSubspaceInlines.h │ │ ├── ConservativeRoots.cpp │ │ ├── ConservativeRoots.h │ │ ├── ConstraintConcurrency.h │ │ ├── ConstraintParallelism.h │ │ ├── ConstraintVolatility.h │ │ ├── DeferGC.cpp │ │ ├── DeferGC.h │ │ ├── DeleteAllCodeEffort.h │ │ ├── DestructionMode.cpp │ │ ├── DestructionMode.h │ │ ├── EdenGCActivityCallback.cpp │ │ ├── EdenGCActivityCallback.h │ │ ├── FastMallocAlignedMemoryAllocator.cpp │ │ ├── FastMallocAlignedMemoryAllocator.h │ │ ├── FreeList.cpp │ │ ├── FreeList.h │ │ ├── FreeListInlines.h │ │ ├── FullGCActivityCallback.cpp │ │ ├── FullGCActivityCallback.h │ │ ├── GCActivityCallback.cpp │ │ ├── GCActivityCallback.h │ │ ├── GCAssertions.h │ │ ├── GCConductor.cpp │ │ ├── GCConductor.h │ │ ├── GCDeferralContext.h │ │ ├── GCDeferralContextInlines.h │ │ ├── GCIncomingRefCounted.h │ │ ├── GCIncomingRefCountedInlines.h │ │ ├── GCIncomingRefCountedSet.h │ │ ├── GCIncomingRefCountedSetInlines.h │ │ ├── GCLogging.cpp │ │ ├── GCLogging.h │ │ ├── GCRequest.cpp │ │ ├── GCRequest.h │ │ ├── GCSegmentedArray.h │ │ ├── GCSegmentedArrayInlines.h │ │ ├── GCTypeMap.h │ │ ├── GigacageAlignedMemoryAllocator.cpp │ │ ├── GigacageAlignedMemoryAllocator.h │ │ ├── Handle.h │ │ ├── HandleBlock.h │ │ ├── HandleBlockInlines.h │ │ ├── HandleSet.cpp │ │ ├── HandleSet.h │ │ ├── HandleTypes.h │ │ ├── Heap.cpp │ │ ├── Heap.h │ │ ├── HeapCell.cpp │ │ ├── HeapCell.h │ │ ├── HeapCellInlines.h │ │ ├── HeapCellType.cpp │ │ ├── HeapCellType.h │ │ ├── HeapFinalizerCallback.cpp │ │ ├── HeapFinalizerCallback.h │ │ ├── HeapHelperPool.cpp │ │ ├── HeapHelperPool.h │ │ ├── HeapInlines.h │ │ ├── HeapIterationScope.h │ │ ├── HeapObserver.h │ │ ├── HeapProfiler.cpp │ │ ├── HeapProfiler.h │ │ ├── HeapSnapshot.cpp │ │ ├── HeapSnapshot.h │ │ ├── HeapSnapshotBuilder.cpp │ │ ├── HeapSnapshotBuilder.h │ │ ├── HeapUtil.h │ │ ├── IncrementalSweeper.cpp │ │ ├── IncrementalSweeper.h │ │ ├── IsoAlignedMemoryAllocator.cpp │ │ ├── IsoAlignedMemoryAllocator.h │ │ ├── IsoCellSet.cpp │ │ ├── IsoCellSet.h │ │ ├── IsoCellSetInlines.h │ │ ├── IsoSubspace.cpp │ │ ├── IsoSubspace.h │ │ ├── IsoSubspaceInlines.h │ │ ├── IsoSubspacePerVM.cpp │ │ ├── IsoSubspacePerVM.h │ │ ├── JITStubRoutineSet.cpp │ │ ├── JITStubRoutineSet.h │ │ ├── LargeAllocation.cpp │ │ ├── LargeAllocation.h │ │ ├── LocalAllocator.cpp │ │ ├── LocalAllocator.h │ │ ├── LocalAllocatorInlines.h │ │ ├── LockDuringMarking.h │ │ ├── MachineStackMarker.cpp │ │ ├── MachineStackMarker.h │ │ ├── MarkStack.cpp │ │ ├── MarkStack.h │ │ ├── MarkStackMergingConstraint.cpp │ │ ├── MarkStackMergingConstraint.h │ │ ├── MarkedBlock.cpp │ │ ├── MarkedBlock.h │ │ ├── MarkedBlockInlines.h │ │ ├── MarkedBlockSet.h │ │ ├── MarkedSpace.cpp │ │ ├── MarkedSpace.h │ │ ├── MarkedSpaceInlines.h │ │ ├── MarkingConstraint.cpp │ │ ├── MarkingConstraint.h │ │ ├── MarkingConstraintSet.cpp │ │ ├── MarkingConstraintSet.h │ │ ├── MarkingConstraintSolver.cpp │ │ ├── MarkingConstraintSolver.h │ │ ├── MutatorScheduler.cpp │ │ ├── MutatorScheduler.h │ │ ├── MutatorState.cpp │ │ ├── MutatorState.h │ │ ├── PackedCellPtr.h │ │ ├── ParallelSourceAdapter.h │ │ ├── PreventCollectionScope.h │ │ ├── RegisterState.h │ │ ├── ReleaseHeapAccessScope.h │ │ ├── RunningScope.h │ │ ├── SimpleMarkingConstraint.cpp │ │ ├── SimpleMarkingConstraint.h │ │ ├── SlotVisitor.cpp │ │ ├── SlotVisitor.h │ │ ├── SlotVisitorInlines.h │ │ ├── SpaceTimeMutatorScheduler.cpp │ │ ├── SpaceTimeMutatorScheduler.h │ │ ├── StochasticSpaceTimeMutatorScheduler.cpp │ │ ├── StochasticSpaceTimeMutatorScheduler.h │ │ ├── StopIfNecessaryTimer.cpp │ │ ├── StopIfNecessaryTimer.h │ │ ├── Strong.h │ │ ├── StrongInlines.h │ │ ├── Subspace.cpp │ │ ├── Subspace.h │ │ ├── SubspaceInlines.h │ │ ├── SweepingScope.h │ │ ├── SynchronousStopTheWorldMutatorScheduler.cpp │ │ ├── SynchronousStopTheWorldMutatorScheduler.h │ │ ├── Synchronousness.cpp │ │ ├── Synchronousness.h │ │ ├── TinyBloomFilter.h │ │ ├── VisitCounter.h │ │ ├── VisitRaceKey.cpp │ │ ├── VisitRaceKey.h │ │ ├── Weak.cpp │ │ ├── Weak.h │ │ ├── WeakBlock.cpp │ │ ├── WeakBlock.h │ │ ├── WeakHandleOwner.cpp │ │ ├── WeakHandleOwner.h │ │ ├── WeakImpl.h │ │ ├── WeakInlines.h │ │ ├── WeakSet.cpp │ │ ├── WeakSet.h │ │ ├── WeakSetInlines.h │ │ ├── WriteBarrierSupport.cpp │ │ └── WriteBarrierSupport.h │ ├── icu │ │ ├── LICENSE │ │ └── README │ ├── inspector │ │ ├── AsyncStackTrace.cpp │ │ ├── AsyncStackTrace.h │ │ ├── ConsoleMessage.cpp │ │ ├── ConsoleMessage.h │ │ ├── ContentSearchUtilities.cpp │ │ ├── ContentSearchUtilities.h │ │ ├── EventLoop.cpp │ │ ├── EventLoop.h │ │ ├── IdentifiersFactory.cpp │ │ ├── IdentifiersFactory.h │ │ ├── InjectedScript.cpp │ │ ├── InjectedScript.h │ │ ├── InjectedScriptBase.cpp │ │ ├── InjectedScriptBase.h │ │ ├── InjectedScriptHost.cpp │ │ ├── InjectedScriptHost.h │ │ ├── InjectedScriptManager.cpp │ │ ├── InjectedScriptManager.h │ │ ├── InjectedScriptModule.cpp │ │ ├── InjectedScriptModule.h │ │ ├── InjectedScriptSource.js │ │ ├── InspectorAgentBase.h │ │ ├── InspectorAgentRegistry.cpp │ │ ├── InspectorAgentRegistry.h │ │ ├── InspectorBackendDispatcher.cpp │ │ ├── InspectorBackendDispatcher.h │ │ ├── InspectorBackendDispatcherCompatibility.cpp │ │ ├── InspectorEnvironment.h │ │ ├── InspectorFrontendChannel.h │ │ ├── InspectorFrontendRouter.cpp │ │ ├── InspectorFrontendRouter.h │ │ ├── InspectorProtocolTypes.h │ │ ├── InspectorTarget.h │ │ ├── JSGlobalObjectConsoleClient.cpp │ │ ├── JSGlobalObjectConsoleClient.h │ │ ├── JSGlobalObjectInspectorController.cpp │ │ ├── JSGlobalObjectInspectorController.h │ │ ├── JSGlobalObjectScriptDebugServer.cpp │ │ ├── JSGlobalObjectScriptDebugServer.h │ │ ├── JSInjectedScriptHost.cpp │ │ ├── JSInjectedScriptHost.h │ │ ├── JSInjectedScriptHostPrototype.cpp │ │ ├── JSInjectedScriptHostPrototype.h │ │ ├── JSJavaScriptCallFrame.cpp │ │ ├── JSJavaScriptCallFrame.h │ │ ├── JSJavaScriptCallFramePrototype.cpp │ │ ├── JSJavaScriptCallFramePrototype.h │ │ ├── JavaScriptCallFrame.cpp │ │ ├── JavaScriptCallFrame.h │ │ ├── PerGlobalObjectWrapperWorld.cpp │ │ ├── PerGlobalObjectWrapperWorld.h │ │ ├── ScriptArguments.cpp │ │ ├── ScriptArguments.h │ │ ├── ScriptBreakpoint.h │ │ ├── ScriptCallFrame.cpp │ │ ├── ScriptCallFrame.h │ │ ├── ScriptCallStack.cpp │ │ ├── ScriptCallStack.h │ │ ├── ScriptCallStackFactory.cpp │ │ ├── ScriptCallStackFactory.h │ │ ├── ScriptDebugListener.h │ │ ├── ScriptDebugServer.cpp │ │ ├── ScriptDebugServer.h │ │ ├── agents │ │ │ ├── InspectorAgent.cpp │ │ │ ├── InspectorAgent.h │ │ │ ├── InspectorAuditAgent.cpp │ │ │ ├── InspectorAuditAgent.h │ │ │ ├── InspectorConsoleAgent.cpp │ │ │ ├── InspectorConsoleAgent.h │ │ │ ├── InspectorDebuggerAgent.cpp │ │ │ ├── InspectorDebuggerAgent.h │ │ │ ├── InspectorHeapAgent.cpp │ │ │ ├── InspectorHeapAgent.h │ │ │ ├── InspectorRuntimeAgent.cpp │ │ │ ├── InspectorRuntimeAgent.h │ │ │ ├── InspectorScriptProfilerAgent.cpp │ │ │ ├── InspectorScriptProfilerAgent.h │ │ │ ├── InspectorTargetAgent.cpp │ │ │ ├── InspectorTargetAgent.h │ │ │ ├── JSGlobalObjectAuditAgent.cpp │ │ │ ├── JSGlobalObjectAuditAgent.h │ │ │ ├── JSGlobalObjectDebuggerAgent.cpp │ │ │ ├── JSGlobalObjectDebuggerAgent.h │ │ │ ├── JSGlobalObjectRuntimeAgent.cpp │ │ │ └── JSGlobalObjectRuntimeAgent.h │ │ ├── augmentable │ │ │ ├── AlternateDispatchableAgent.h │ │ │ ├── AugmentableInspectorController.h │ │ │ └── AugmentableInspectorControllerClient.h │ │ ├── cocoa │ │ │ └── DeprecatedInspectorValues.cpp │ │ ├── protocol │ │ │ ├── ApplicationCache.json │ │ │ ├── Audit.json │ │ │ ├── CPUProfiler.json │ │ │ ├── CSS.json │ │ │ ├── Canvas.json │ │ │ ├── Console.json │ │ │ ├── DOM.json │ │ │ ├── DOMDebugger.json │ │ │ ├── DOMStorage.json │ │ │ ├── Database.json │ │ │ ├── Debugger.json │ │ │ ├── GenericTypes.json │ │ │ ├── Heap.json │ │ │ ├── IndexedDB.json │ │ │ ├── Inspector.json │ │ │ ├── LayerTree.json │ │ │ ├── Memory.json │ │ │ ├── Network.json │ │ │ ├── Page.json │ │ │ ├── Recording.json │ │ │ ├── Runtime.json │ │ │ ├── ScriptProfiler.json │ │ │ ├── Security.json │ │ │ ├── ServiceWorker.json │ │ │ ├── Target.json │ │ │ ├── Timeline.json │ │ │ └── Worker.json │ │ ├── remote │ │ │ ├── RemoteAutomationTarget.cpp │ │ │ ├── RemoteAutomationTarget.h │ │ │ ├── RemoteConnectionToTarget.cpp │ │ │ ├── RemoteConnectionToTarget.h │ │ │ ├── RemoteControllableTarget.cpp │ │ │ ├── RemoteControllableTarget.h │ │ │ ├── RemoteInspectionTarget.cpp │ │ │ ├── RemoteInspectionTarget.h │ │ │ ├── RemoteInspector.cpp │ │ │ ├── RemoteInspector.h │ │ │ ├── RemoteInspectorConstants.h │ │ │ ├── cocoa │ │ │ │ ├── RemoteConnectionToTargetCocoa.mm │ │ │ │ ├── RemoteInspectorCocoa.mm │ │ │ │ ├── RemoteInspectorXPCConnection.h │ │ │ │ └── RemoteInspectorXPCConnection.mm │ │ │ ├── glib │ │ │ │ ├── RemoteInspectorGlib.cpp │ │ │ │ ├── RemoteInspectorServer.cpp │ │ │ │ ├── RemoteInspectorServer.h │ │ │ │ ├── RemoteInspectorUtils.cpp │ │ │ │ └── RemoteInspectorUtils.h │ │ │ └── socket │ │ │ │ ├── RemoteInspectorConnectionClient.cpp │ │ │ │ ├── RemoteInspectorConnectionClient.h │ │ │ │ ├── RemoteInspectorMessageParser.cpp │ │ │ │ ├── RemoteInspectorMessageParser.h │ │ │ │ ├── RemoteInspectorServer.cpp │ │ │ │ ├── RemoteInspectorServer.h │ │ │ │ ├── RemoteInspectorSocket.cpp │ │ │ │ ├── RemoteInspectorSocket.h │ │ │ │ ├── RemoteInspectorSocketEndpoint.cpp │ │ │ │ ├── RemoteInspectorSocketEndpoint.h │ │ │ │ ├── posix │ │ │ │ └── RemoteInspectorSocketPOSIX.cpp │ │ │ │ └── win │ │ │ │ └── RemoteInspectorSocketWin.cpp │ │ └── scripts │ │ │ ├── codegen │ │ │ ├── __init__.py │ │ │ ├── cpp_generator.py │ │ │ ├── cpp_generator_templates.py │ │ │ ├── generate_cpp_alternate_backend_dispatcher_header.py │ │ │ ├── generate_cpp_backend_dispatcher_header.py │ │ │ ├── generate_cpp_backend_dispatcher_implementation.py │ │ │ ├── generate_cpp_frontend_dispatcher_header.py │ │ │ ├── generate_cpp_frontend_dispatcher_implementation.py │ │ │ ├── generate_cpp_protocol_types_header.py │ │ │ ├── generate_cpp_protocol_types_implementation.py │ │ │ ├── generate_js_backend_commands.py │ │ │ ├── generate_objc_backend_dispatcher_header.py │ │ │ ├── generate_objc_backend_dispatcher_implementation.py │ │ │ ├── generate_objc_configuration_header.py │ │ │ ├── generate_objc_configuration_implementation.py │ │ │ ├── generate_objc_frontend_dispatcher_implementation.py │ │ │ ├── generate_objc_header.py │ │ │ ├── generate_objc_internal_header.py │ │ │ ├── generate_objc_protocol_type_conversions_header.py │ │ │ ├── generate_objc_protocol_type_conversions_implementation.py │ │ │ ├── generate_objc_protocol_types_implementation.py │ │ │ ├── generator.py │ │ │ ├── generator_templates.py │ │ │ ├── models.py │ │ │ ├── objc_generator.py │ │ │ └── objc_generator_templates.py │ │ │ ├── generate-inspector-protocol-bindings.py │ │ │ └── tests │ │ │ ├── all │ │ │ ├── definitions-with-mac-platform.json │ │ │ └── expected │ │ │ │ └── definitions-with-mac-platform.json-result │ │ │ ├── generic │ │ │ ├── commands-with-async-attribute.json │ │ │ ├── commands-with-optional-call-return-parameters.json │ │ │ ├── definitions-with-mac-platform.json │ │ │ ├── domain-availability.json │ │ │ ├── domains-with-varying-command-sizes.json │ │ │ ├── enum-values.json │ │ │ ├── events-with-optional-parameters.json │ │ │ ├── expected │ │ │ │ ├── commands-with-async-attribute.json-result │ │ │ │ ├── commands-with-optional-call-return-parameters.json-result │ │ │ │ ├── definitions-with-mac-platform.json-result │ │ │ │ ├── domain-availability.json-result │ │ │ │ ├── domains-with-varying-command-sizes.json-result │ │ │ │ ├── enum-values.json-result │ │ │ │ ├── events-with-optional-parameters.json-result │ │ │ │ ├── fail-on-command-with-invalid-platform.json-error │ │ │ │ ├── fail-on-domain-availability-type.json-error │ │ │ │ ├── fail-on-domain-availability-value.json-error │ │ │ │ ├── fail-on-domain-availability.json-error │ │ │ │ ├── fail-on-duplicate-command-call-parameter-names.json-error │ │ │ │ ├── fail-on-duplicate-command-return-parameter-names.json-error │ │ │ │ ├── fail-on-duplicate-event-parameter-names.json-error │ │ │ │ ├── fail-on-duplicate-type-declarations.json-error │ │ │ │ ├── fail-on-duplicate-type-member-names.json-error │ │ │ │ ├── fail-on-enum-with-no-values.json-error │ │ │ │ ├── fail-on-number-typed-optional-parameter-flag.json-error │ │ │ │ ├── fail-on-number-typed-optional-type-member.json-error │ │ │ │ ├── fail-on-string-typed-optional-parameter-flag.json-error │ │ │ │ ├── fail-on-string-typed-optional-type-member.json-error │ │ │ │ ├── fail-on-type-declaration-using-type-reference.json-error │ │ │ │ ├── fail-on-type-reference-as-primitive-type.json-error │ │ │ │ ├── fail-on-type-with-invalid-platform.json-error │ │ │ │ ├── fail-on-type-with-lowercase-name.json-error │ │ │ │ ├── fail-on-unknown-type-reference-in-type-declaration.json-error │ │ │ │ ├── fail-on-unknown-type-reference-in-type-member.json-error │ │ │ │ ├── generate-domains-with-feature-guards.json-result │ │ │ │ ├── same-type-id-different-domain.json-result │ │ │ │ ├── shadowed-optional-type-setters.json-result │ │ │ │ ├── type-declaration-aliased-primitive-type.json-result │ │ │ │ ├── type-declaration-array-type.json-result │ │ │ │ ├── type-declaration-enum-type.json-result │ │ │ │ ├── type-declaration-object-type.json-result │ │ │ │ ├── type-requiring-runtime-casts.json-result │ │ │ │ ├── type-with-open-parameters.json-result │ │ │ │ └── version.json-result │ │ │ ├── fail-on-command-with-invalid-platform.json │ │ │ ├── fail-on-domain-availability-type.json │ │ │ ├── fail-on-domain-availability-value.json │ │ │ ├── fail-on-duplicate-command-call-parameter-names.json │ │ │ ├── fail-on-duplicate-command-return-parameter-names.json │ │ │ ├── fail-on-duplicate-event-parameter-names.json │ │ │ ├── fail-on-duplicate-type-declarations.json │ │ │ ├── fail-on-duplicate-type-member-names.json │ │ │ ├── fail-on-enum-with-no-values.json │ │ │ ├── fail-on-number-typed-optional-parameter-flag.json │ │ │ ├── fail-on-number-typed-optional-type-member.json │ │ │ ├── fail-on-string-typed-optional-parameter-flag.json │ │ │ ├── fail-on-string-typed-optional-type-member.json │ │ │ ├── fail-on-type-declaration-using-type-reference.json │ │ │ ├── fail-on-type-reference-as-primitive-type.json │ │ │ ├── fail-on-type-with-invalid-platform.json │ │ │ ├── fail-on-type-with-lowercase-name.json │ │ │ ├── fail-on-unknown-type-reference-in-type-declaration.json │ │ │ ├── fail-on-unknown-type-reference-in-type-member.json │ │ │ ├── generate-domains-with-feature-guards.json │ │ │ ├── same-type-id-different-domain.json │ │ │ ├── shadowed-optional-type-setters.json │ │ │ ├── type-declaration-aliased-primitive-type.json │ │ │ ├── type-declaration-array-type.json │ │ │ ├── type-declaration-enum-type.json │ │ │ ├── type-declaration-object-type.json │ │ │ ├── type-requiring-runtime-casts.json │ │ │ ├── type-with-open-parameters.json │ │ │ └── version.json │ │ │ ├── ios │ │ │ ├── definitions-with-mac-platform.json │ │ │ └── expected │ │ │ │ └── definitions-with-mac-platform.json-result │ │ │ └── mac │ │ │ ├── definitions-with-mac-platform.json │ │ │ └── expected │ │ │ └── definitions-with-mac-platform.json-result │ ├── interpreter │ │ ├── AbstractPC.cpp │ │ ├── AbstractPC.h │ │ ├── CLoopStack.cpp │ │ ├── CLoopStack.h │ │ ├── CLoopStackInlines.h │ │ ├── CachedCall.h │ │ ├── CallFrame.cpp │ │ ├── CallFrame.h │ │ ├── CallFrameClosure.h │ │ ├── CallFrameInlines.h │ │ ├── CalleeBits.h │ │ ├── EntryFrame.h │ │ ├── FrameTracers.h │ │ ├── Interpreter.cpp │ │ ├── Interpreter.h │ │ ├── InterpreterInlines.h │ │ ├── ProtoCallFrame.h │ │ ├── Register.h │ │ ├── ShadowChicken.cpp │ │ ├── ShadowChicken.h │ │ ├── ShadowChickenInlines.h │ │ ├── StackVisitor.cpp │ │ ├── StackVisitor.h │ │ └── VMEntryRecord.h │ ├── javascriptcoregtk.pc.in │ ├── jit │ │ ├── AssemblyHelpers.cpp │ │ ├── AssemblyHelpers.h │ │ ├── BinarySwitch.cpp │ │ ├── BinarySwitch.h │ │ ├── CCallHelpers.cpp │ │ ├── CCallHelpers.h │ │ ├── CachedRecovery.cpp │ │ ├── CachedRecovery.h │ │ ├── CallFrameShuffleData.cpp │ │ ├── CallFrameShuffleData.h │ │ ├── CallFrameShuffler.cpp │ │ ├── CallFrameShuffler.h │ │ ├── CallFrameShuffler32_64.cpp │ │ ├── CallFrameShuffler64.cpp │ │ ├── ExecutableAllocationFuzz.cpp │ │ ├── ExecutableAllocationFuzz.h │ │ ├── ExecutableAllocator.cpp │ │ ├── ExecutableAllocator.h │ │ ├── FPRInfo.h │ │ ├── GCAwareJITStubRoutine.cpp │ │ ├── GCAwareJITStubRoutine.h │ │ ├── GPRInfo.cpp │ │ ├── GPRInfo.h │ │ ├── HostCallReturnValue.cpp │ │ ├── HostCallReturnValue.h │ │ ├── ICStats.cpp │ │ ├── ICStats.h │ │ ├── IntrinsicEmitter.cpp │ │ ├── JIT.cpp │ │ ├── JIT.h │ │ ├── JITAddGenerator.cpp │ │ ├── JITAddGenerator.h │ │ ├── JITAllocator.h │ │ ├── JITArithmetic.cpp │ │ ├── JITArithmetic32_64.cpp │ │ ├── JITBitAndGenerator.cpp │ │ ├── JITBitAndGenerator.h │ │ ├── JITBitBinaryOpGenerator.h │ │ ├── JITBitOrGenerator.cpp │ │ ├── JITBitOrGenerator.h │ │ ├── JITBitXorGenerator.cpp │ │ ├── JITBitXorGenerator.h │ │ ├── JITCall.cpp │ │ ├── JITCall32_64.cpp │ │ ├── JITCode.cpp │ │ ├── JITCode.h │ │ ├── JITCodeInlines.h │ │ ├── JITCodeMap.h │ │ ├── JITCompilationEffort.h │ │ ├── JITDisassembler.cpp │ │ ├── JITDisassembler.h │ │ ├── JITDivGenerator.cpp │ │ ├── JITDivGenerator.h │ │ ├── JITExceptions.cpp │ │ ├── JITExceptions.h │ │ ├── JITInlineCacheGenerator.cpp │ │ ├── JITInlineCacheGenerator.h │ │ ├── JITInlines.h │ │ ├── JITLeftShiftGenerator.cpp │ │ ├── JITLeftShiftGenerator.h │ │ ├── JITMathIC.h │ │ ├── JITMathICForwards.h │ │ ├── JITMathICInlineResult.h │ │ ├── JITMulGenerator.cpp │ │ ├── JITMulGenerator.h │ │ ├── JITNegGenerator.cpp │ │ ├── JITNegGenerator.h │ │ ├── JITOpcodes.cpp │ │ ├── JITOpcodes32_64.cpp │ │ ├── JITOperations.cpp │ │ ├── JITOperations.h │ │ ├── JITOperationsMSVC64.cpp │ │ ├── JITPropertyAccess.cpp │ │ ├── JITPropertyAccess32_64.cpp │ │ ├── JITRightShiftGenerator.cpp │ │ ├── JITRightShiftGenerator.h │ │ ├── JITStubRoutine.cpp │ │ ├── JITStubRoutine.h │ │ ├── JITStubsMSVC64.asm │ │ ├── JITSubGenerator.cpp │ │ ├── JITSubGenerator.h │ │ ├── JITThunks.cpp │ │ ├── JITThunks.h │ │ ├── JITToDFGDeferredCompilationCallback.cpp │ │ ├── JITToDFGDeferredCompilationCallback.h │ │ ├── JITWorklist.cpp │ │ ├── JITWorklist.h │ │ ├── JSInterfaceJIT.h │ │ ├── PCToCodeOriginMap.cpp │ │ ├── PCToCodeOriginMap.h │ │ ├── PolymorphicCallStubRoutine.cpp │ │ ├── PolymorphicCallStubRoutine.h │ │ ├── Reg.cpp │ │ ├── Reg.h │ │ ├── RegisterAtOffset.cpp │ │ ├── RegisterAtOffset.h │ │ ├── RegisterAtOffsetList.cpp │ │ ├── RegisterAtOffsetList.h │ │ ├── RegisterMap.h │ │ ├── RegisterSet.cpp │ │ ├── RegisterSet.h │ │ ├── Repatch.cpp │ │ ├── Repatch.h │ │ ├── ScratchRegisterAllocator.cpp │ │ ├── ScratchRegisterAllocator.h │ │ ├── SetupVarargsFrame.cpp │ │ ├── SetupVarargsFrame.h │ │ ├── SlowPathCall.h │ │ ├── Snippet.h │ │ ├── SnippetOperand.h │ │ ├── SnippetParams.h │ │ ├── SnippetReg.h │ │ ├── SnippetSlowPathCalls.h │ │ ├── SpecializedThunkJIT.h │ │ ├── SpillRegistersMode.h │ │ ├── TagRegistersMode.cpp │ │ ├── TagRegistersMode.h │ │ ├── TempRegisterSet.cpp │ │ ├── TempRegisterSet.h │ │ ├── ThunkGenerator.h │ │ ├── ThunkGenerators.cpp │ │ ├── ThunkGenerators.h │ │ └── UnusedPointer.h │ ├── jsc.cpp │ ├── llint │ │ ├── LLIntCLoop.cpp │ │ ├── LLIntCLoop.h │ │ ├── LLIntCommon.h │ │ ├── LLIntData.cpp │ │ ├── LLIntData.h │ │ ├── LLIntEntrypoint.cpp │ │ ├── LLIntEntrypoint.h │ │ ├── LLIntExceptions.cpp │ │ ├── LLIntExceptions.h │ │ ├── LLIntOfflineAsmConfig.h │ │ ├── LLIntOffsetsExtractor.cpp │ │ ├── LLIntOpcode.h │ │ ├── LLIntPCRanges.h │ │ ├── LLIntSettingsExtractor.cpp │ │ ├── LLIntSlowPaths.cpp │ │ ├── LLIntSlowPaths.h │ │ ├── LLIntThunks.cpp │ │ ├── LLIntThunks.h │ │ ├── LowLevelInterpreter.asm │ │ ├── LowLevelInterpreter.cpp │ │ ├── LowLevelInterpreter.h │ │ ├── LowLevelInterpreter32_64.asm │ │ └── LowLevelInterpreter64.asm │ ├── offlineasm │ │ ├── arm.rb │ │ ├── arm64.rb │ │ ├── arm64e.rb │ │ ├── asm.rb │ │ ├── ast.rb │ │ ├── backends.rb │ │ ├── cloop.rb │ │ ├── config.rb │ │ ├── generate_offset_extractor.rb │ │ ├── generate_settings_extractor.rb │ │ ├── instructions.rb │ │ ├── mips.rb │ │ ├── offsets.rb │ │ ├── opt.rb │ │ ├── parser.rb │ │ ├── registers.rb │ │ ├── risc.rb │ │ ├── self_hash.rb │ │ ├── settings.rb │ │ ├── transform.rb │ │ └── x86.rb │ ├── parser │ │ ├── ASTBuilder.h │ │ ├── Keywords.table │ │ ├── Lexer.cpp │ │ ├── Lexer.h │ │ ├── ModuleAnalyzer.cpp │ │ ├── ModuleAnalyzer.h │ │ ├── ModuleScopeData.h │ │ ├── NodeConstructors.h │ │ ├── Nodes.cpp │ │ ├── Nodes.h │ │ ├── NodesAnalyzeModule.cpp │ │ ├── Parser.cpp │ │ ├── Parser.h │ │ ├── ParserArena.cpp │ │ ├── ParserArena.h │ │ ├── ParserError.h │ │ ├── ParserFunctionInfo.h │ │ ├── ParserModes.h │ │ ├── ParserTokens.h │ │ ├── ResultType.h │ │ ├── SourceCode.h │ │ ├── SourceCodeKey.h │ │ ├── SourceProvider.cpp │ │ ├── SourceProvider.h │ │ ├── SourceProviderCache.cpp │ │ ├── SourceProviderCache.h │ │ ├── SourceProviderCacheItem.h │ │ ├── SyntaxChecker.h │ │ ├── UnlinkedSourceCode.cpp │ │ ├── UnlinkedSourceCode.h │ │ ├── VariableEnvironment.cpp │ │ └── VariableEnvironment.h │ ├── postprocess-headers.sh │ ├── profiler │ │ ├── ProfilerBytecode.cpp │ │ ├── ProfilerBytecode.h │ │ ├── ProfilerBytecodeSequence.cpp │ │ ├── ProfilerBytecodeSequence.h │ │ ├── ProfilerBytecodes.cpp │ │ ├── ProfilerBytecodes.h │ │ ├── ProfilerCompilation.cpp │ │ ├── ProfilerCompilation.h │ │ ├── ProfilerCompilationKind.cpp │ │ ├── ProfilerCompilationKind.h │ │ ├── ProfilerCompiledBytecode.cpp │ │ ├── ProfilerCompiledBytecode.h │ │ ├── ProfilerDatabase.cpp │ │ ├── ProfilerDatabase.h │ │ ├── ProfilerEvent.cpp │ │ ├── ProfilerEvent.h │ │ ├── ProfilerExecutionCounter.h │ │ ├── ProfilerJettisonReason.cpp │ │ ├── ProfilerJettisonReason.h │ │ ├── ProfilerOSRExit.cpp │ │ ├── ProfilerOSRExit.h │ │ ├── ProfilerOSRExitSite.cpp │ │ ├── ProfilerOSRExitSite.h │ │ ├── ProfilerOrigin.cpp │ │ ├── ProfilerOrigin.h │ │ ├── ProfilerOriginStack.cpp │ │ ├── ProfilerOriginStack.h │ │ ├── ProfilerProfiledBytecodes.cpp │ │ ├── ProfilerProfiledBytecodes.h │ │ ├── ProfilerUID.cpp │ │ └── ProfilerUID.h │ ├── runtime │ │ ├── AbstractModuleRecord.cpp │ │ ├── AbstractModuleRecord.h │ │ ├── ArgList.cpp │ │ ├── ArgList.h │ │ ├── ArgumentsMode.h │ │ ├── ArityCheckMode.h │ │ ├── ArrayBuffer.cpp │ │ ├── ArrayBuffer.h │ │ ├── ArrayBufferNeuteringWatchpointSet.cpp │ │ ├── ArrayBufferNeuteringWatchpointSet.h │ │ ├── ArrayBufferSharingMode.h │ │ ├── ArrayBufferView.cpp │ │ ├── ArrayBufferView.h │ │ ├── ArrayConstructor.cpp │ │ ├── ArrayConstructor.h │ │ ├── ArrayConventions.cpp │ │ ├── ArrayConventions.h │ │ ├── ArrayIteratorPrototype.cpp │ │ ├── ArrayIteratorPrototype.h │ │ ├── ArrayPrototype.cpp │ │ ├── ArrayPrototype.h │ │ ├── ArrayStorage.h │ │ ├── AsyncFromSyncIteratorPrototype.cpp │ │ ├── AsyncFromSyncIteratorPrototype.h │ │ ├── AsyncFunctionConstructor.cpp │ │ ├── AsyncFunctionConstructor.h │ │ ├── AsyncFunctionPrototype.cpp │ │ ├── AsyncFunctionPrototype.h │ │ ├── AsyncGeneratorFunctionConstructor.cpp │ │ ├── AsyncGeneratorFunctionConstructor.h │ │ ├── AsyncGeneratorFunctionPrototype.cpp │ │ ├── AsyncGeneratorFunctionPrototype.h │ │ ├── AsyncGeneratorPrototype.cpp │ │ ├── AsyncGeneratorPrototype.h │ │ ├── AsyncIteratorPrototype.cpp │ │ ├── AsyncIteratorPrototype.h │ │ ├── AtomicsObject.cpp │ │ ├── AtomicsObject.h │ │ ├── AuxiliaryBarrier.h │ │ ├── AuxiliaryBarrierInlines.h │ │ ├── BasicBlockLocation.cpp │ │ ├── BasicBlockLocation.h │ │ ├── BatchedTransitionOptimizer.h │ │ ├── BigIntConstructor.cpp │ │ ├── BigIntConstructor.h │ │ ├── BigIntObject.cpp │ │ ├── BigIntObject.h │ │ ├── BigIntPrototype.cpp │ │ ├── BigIntPrototype.h │ │ ├── BigInteger.h │ │ ├── BooleanConstructor.cpp │ │ ├── BooleanConstructor.h │ │ ├── BooleanObject.cpp │ │ ├── BooleanObject.h │ │ ├── BooleanPrototype.cpp │ │ ├── BooleanPrototype.h │ │ ├── BundlePath.h │ │ ├── BundlePath.mm │ │ ├── Butterfly.h │ │ ├── ButterflyInlines.h │ │ ├── BytecodeCacheError.cpp │ │ ├── BytecodeCacheError.h │ │ ├── CachePayload.cpp │ │ ├── CachePayload.h │ │ ├── CacheUpdate.cpp │ │ ├── CacheUpdate.h │ │ ├── CachedBytecode.cpp │ │ ├── CachedBytecode.h │ │ ├── CachedTypes.cpp │ │ ├── CachedTypes.h │ │ ├── CagedBarrierPtr.h │ │ ├── CallData.cpp │ │ ├── CallData.h │ │ ├── CatchScope.cpp │ │ ├── CatchScope.h │ │ ├── ClassInfo.cpp │ │ ├── ClassInfo.h │ │ ├── ClonedArguments.cpp │ │ ├── ClonedArguments.h │ │ ├── CodeCache.cpp │ │ ├── CodeCache.h │ │ ├── CodeSpecializationKind.cpp │ │ ├── CodeSpecializationKind.h │ │ ├── CommonIdentifiers.cpp │ │ ├── CommonIdentifiers.h │ │ ├── CommonSlowPaths.cpp │ │ ├── CommonSlowPaths.h │ │ ├── CompilationResult.cpp │ │ ├── CompilationResult.h │ │ ├── Completion.cpp │ │ ├── Completion.h │ │ ├── ConcurrentJSLock.h │ │ ├── ConfigFile.cpp │ │ ├── ConfigFile.h │ │ ├── ConsoleClient.cpp │ │ ├── ConsoleClient.h │ │ ├── ConsoleObject.cpp │ │ ├── ConsoleObject.h │ │ ├── ConsoleTypes.h │ │ ├── ConstantMode.cpp │ │ ├── ConstantMode.h │ │ ├── ConstructAbility.h │ │ ├── ConstructData.cpp │ │ ├── ConstructData.h │ │ ├── ControlFlowProfiler.cpp │ │ ├── ControlFlowProfiler.h │ │ ├── CustomGetterSetter.cpp │ │ ├── CustomGetterSetter.h │ │ ├── DOMAnnotation.h │ │ ├── DOMAttributeGetterSetter.cpp │ │ ├── DOMAttributeGetterSetter.h │ │ ├── DataView.cpp │ │ ├── DataView.h │ │ ├── DateConstructor.cpp │ │ ├── DateConstructor.h │ │ ├── DateConversion.cpp │ │ ├── DateConversion.h │ │ ├── DateInstance.cpp │ │ ├── DateInstance.h │ │ ├── DateInstanceCache.h │ │ ├── DatePrototype.cpp │ │ ├── DatePrototype.h │ │ ├── DefinePropertyAttributes.h │ │ ├── DirectArguments.cpp │ │ ├── DirectArguments.h │ │ ├── DirectArgumentsOffset.cpp │ │ ├── DirectArgumentsOffset.h │ │ ├── DirectEvalExecutable.cpp │ │ ├── DirectEvalExecutable.h │ │ ├── DisallowScope.h │ │ ├── DisallowVMReentry.cpp │ │ ├── DisallowVMReentry.h │ │ ├── DoublePredictionFuzzerAgent.cpp │ │ ├── DoublePredictionFuzzerAgent.h │ │ ├── DumpContext.cpp │ │ ├── DumpContext.h │ │ ├── ECMAScriptSpecInternalFunctions.cpp │ │ ├── ECMAScriptSpecInternalFunctions.h │ │ ├── EnumerationMode.h │ │ ├── Error.cpp │ │ ├── Error.h │ │ ├── ErrorConstructor.cpp │ │ ├── ErrorConstructor.h │ │ ├── ErrorHandlingScope.cpp │ │ ├── ErrorHandlingScope.h │ │ ├── ErrorInstance.cpp │ │ ├── ErrorInstance.h │ │ ├── ErrorPrototype.cpp │ │ ├── ErrorPrototype.h │ │ ├── ErrorType.cpp │ │ ├── ErrorType.h │ │ ├── EvalExecutable.cpp │ │ ├── EvalExecutable.h │ │ ├── Exception.cpp │ │ ├── Exception.h │ │ ├── ExceptionEventLocation.cpp │ │ ├── ExceptionEventLocation.h │ │ ├── ExceptionFuzz.cpp │ │ ├── ExceptionFuzz.h │ │ ├── ExceptionHelpers.cpp │ │ ├── ExceptionHelpers.h │ │ ├── ExceptionScope.cpp │ │ ├── ExceptionScope.h │ │ ├── ExecutableBase.cpp │ │ ├── ExecutableBase.h │ │ ├── ExecutableBaseInlines.h │ │ ├── Float32Array.h │ │ ├── Float64Array.h │ │ ├── FunctionConstructor.cpp │ │ ├── FunctionConstructor.h │ │ ├── FunctionExecutable.cpp │ │ ├── FunctionExecutable.h │ │ ├── FunctionExecutableDump.cpp │ │ ├── FunctionExecutableDump.h │ │ ├── FunctionExecutableInlines.h │ │ ├── FunctionHasExecutedCache.cpp │ │ ├── FunctionHasExecutedCache.h │ │ ├── FunctionPrototype.cpp │ │ ├── FunctionPrototype.h │ │ ├── FunctionRareData.cpp │ │ ├── FunctionRareData.h │ │ ├── FuzzerAgent.cpp │ │ ├── FuzzerAgent.h │ │ ├── GeneratorFunctionConstructor.cpp │ │ ├── GeneratorFunctionConstructor.h │ │ ├── GeneratorFunctionPrototype.cpp │ │ ├── GeneratorFunctionPrototype.h │ │ ├── GeneratorPrototype.cpp │ │ ├── GeneratorPrototype.h │ │ ├── GenericArguments.h │ │ ├── GenericArgumentsInlines.h │ │ ├── GenericOffset.h │ │ ├── GenericTypedArrayView.h │ │ ├── GenericTypedArrayViewInlines.h │ │ ├── GetPutInfo.cpp │ │ ├── GetPutInfo.h │ │ ├── GetterSetter.cpp │ │ ├── GetterSetter.h │ │ ├── GlobalExecutable.cpp │ │ ├── GlobalExecutable.h │ │ ├── HasOwnPropertyCache.h │ │ ├── HashMapImpl.cpp │ │ ├── HashMapImpl.h │ │ ├── Identifier.cpp │ │ ├── Identifier.h │ │ ├── IdentifierInlines.h │ │ ├── IndexingHeader.h │ │ ├── IndexingHeaderInlines.h │ │ ├── IndexingType.cpp │ │ ├── IndexingType.h │ │ ├── IndirectEvalExecutable.cpp │ │ ├── IndirectEvalExecutable.h │ │ ├── InferredValue.h │ │ ├── InferredValueInlines.h │ │ ├── InitializeThreading.cpp │ │ ├── InitializeThreading.h │ │ ├── InspectorInstrumentationObject.cpp │ │ ├── InspectorInstrumentationObject.h │ │ ├── Int16Array.h │ │ ├── Int32Array.h │ │ ├── Int8Array.h │ │ ├── InternalFunction.cpp │ │ ├── InternalFunction.h │ │ ├── IntlCollator.cpp │ │ ├── IntlCollator.h │ │ ├── IntlCollatorConstructor.cpp │ │ ├── IntlCollatorConstructor.h │ │ ├── IntlCollatorPrototype.cpp │ │ ├── IntlCollatorPrototype.h │ │ ├── IntlDateTimeFormat.cpp │ │ ├── IntlDateTimeFormat.h │ │ ├── IntlDateTimeFormatConstructor.cpp │ │ ├── IntlDateTimeFormatConstructor.h │ │ ├── IntlDateTimeFormatPrototype.cpp │ │ ├── IntlDateTimeFormatPrototype.h │ │ ├── IntlNumberFormat.cpp │ │ ├── IntlNumberFormat.h │ │ ├── IntlNumberFormatConstructor.cpp │ │ ├── IntlNumberFormatConstructor.h │ │ ├── IntlNumberFormatPrototype.cpp │ │ ├── IntlNumberFormatPrototype.h │ │ ├── IntlObject.cpp │ │ ├── IntlObject.h │ │ ├── IntlObjectInlines.h │ │ ├── IntlPluralRules.cpp │ │ ├── IntlPluralRules.h │ │ ├── IntlPluralRulesConstructor.cpp │ │ ├── IntlPluralRulesConstructor.h │ │ ├── IntlPluralRulesPrototype.cpp │ │ ├── IntlPluralRulesPrototype.h │ │ ├── Intrinsic.cpp │ │ ├── Intrinsic.h │ │ ├── IterationKind.h │ │ ├── IterationStatus.h │ │ ├── IteratorOperations.cpp │ │ ├── IteratorOperations.h │ │ ├── IteratorPrototype.cpp │ │ ├── IteratorPrototype.h │ │ ├── JSArray.cpp │ │ ├── JSArray.h │ │ ├── JSArrayBuffer.cpp │ │ ├── JSArrayBuffer.h │ │ ├── JSArrayBufferConstructor.cpp │ │ ├── JSArrayBufferConstructor.h │ │ ├── JSArrayBufferPrototype.cpp │ │ ├── JSArrayBufferPrototype.h │ │ ├── JSArrayBufferView.cpp │ │ ├── JSArrayBufferView.h │ │ ├── JSArrayBufferViewInlines.h │ │ ├── JSArrayInlines.h │ │ ├── JSAsyncFunction.cpp │ │ ├── JSAsyncFunction.h │ │ ├── JSAsyncGeneratorFunction.cpp │ │ ├── JSAsyncGeneratorFunction.h │ │ ├── JSBigInt.cpp │ │ ├── JSBigInt.h │ │ ├── JSBoundFunction.cpp │ │ ├── JSBoundFunction.h │ │ ├── JSCInlines.h │ │ ├── JSCJSValue.cpp │ │ ├── JSCJSValue.h │ │ ├── JSCJSValueInlines.h │ │ ├── JSCPtrTag.cpp │ │ ├── JSCPtrTag.h │ │ ├── JSCallee.cpp │ │ ├── JSCallee.h │ │ ├── JSCast.h │ │ ├── JSCell.cpp │ │ ├── JSCell.h │ │ ├── JSCellInlines.h │ │ ├── JSCustomGetterSetterFunction.cpp │ │ ├── JSCustomGetterSetterFunction.h │ │ ├── JSDataView.cpp │ │ ├── JSDataView.h │ │ ├── JSDataViewPrototype.cpp │ │ ├── JSDataViewPrototype.h │ │ ├── JSDateMath.cpp │ │ ├── JSDateMath.h │ │ ├── JSDestructibleObject.h │ │ ├── JSDestructibleObjectHeapCellType.cpp │ │ ├── JSDestructibleObjectHeapCellType.h │ │ ├── JSExportMacros.h │ │ ├── JSFixedArray.cpp │ │ ├── JSFixedArray.h │ │ ├── JSFloat32Array.h │ │ ├── JSFloat64Array.h │ │ ├── JSFunction.cpp │ │ ├── JSFunction.h │ │ ├── JSFunctionInlines.h │ │ ├── JSGeneratorFunction.cpp │ │ ├── JSGeneratorFunction.h │ │ ├── JSGenericTypedArrayView.h │ │ ├── JSGenericTypedArrayViewConstructor.h │ │ ├── JSGenericTypedArrayViewConstructorInlines.h │ │ ├── JSGenericTypedArrayViewInlines.h │ │ ├── JSGenericTypedArrayViewPrototype.h │ │ ├── JSGenericTypedArrayViewPrototypeFunctions.h │ │ ├── JSGenericTypedArrayViewPrototypeInlines.h │ │ ├── JSGlobalLexicalEnvironment.cpp │ │ ├── JSGlobalLexicalEnvironment.h │ │ ├── JSGlobalObject.cpp │ │ ├── JSGlobalObject.h │ │ ├── JSGlobalObjectDebuggable.cpp │ │ ├── JSGlobalObjectDebuggable.h │ │ ├── JSGlobalObjectFunctions.cpp │ │ ├── JSGlobalObjectFunctions.h │ │ ├── JSGlobalObjectInlines.h │ │ ├── JSImmutableButterfly.cpp │ │ ├── JSImmutableButterfly.h │ │ ├── JSInt16Array.h │ │ ├── JSInt32Array.h │ │ ├── JSInt8Array.h │ │ ├── JSInternalPromise.cpp │ │ ├── JSInternalPromise.h │ │ ├── JSInternalPromiseConstructor.cpp │ │ ├── JSInternalPromiseConstructor.h │ │ ├── JSInternalPromiseDeferred.cpp │ │ ├── JSInternalPromiseDeferred.h │ │ ├── JSInternalPromisePrototype.cpp │ │ ├── JSInternalPromisePrototype.h │ │ ├── JSLexicalEnvironment.cpp │ │ ├── JSLexicalEnvironment.h │ │ ├── JSLock.cpp │ │ ├── JSLock.h │ │ ├── JSMap.cpp │ │ ├── JSMap.h │ │ ├── JSMapIterator.cpp │ │ ├── JSMapIterator.h │ │ ├── JSMicrotask.cpp │ │ ├── JSMicrotask.h │ │ ├── JSModuleEnvironment.cpp │ │ ├── JSModuleEnvironment.h │ │ ├── JSModuleLoader.cpp │ │ ├── JSModuleLoader.h │ │ ├── JSModuleNamespaceObject.cpp │ │ ├── JSModuleNamespaceObject.h │ │ ├── JSModuleRecord.cpp │ │ ├── JSModuleRecord.h │ │ ├── JSNativeStdFunction.cpp │ │ ├── JSNativeStdFunction.h │ │ ├── JSNonDestructibleProxy.cpp │ │ ├── JSNonDestructibleProxy.h │ │ ├── JSONObject.cpp │ │ ├── JSONObject.h │ │ ├── JSObject.cpp │ │ ├── JSObject.h │ │ ├── JSObjectInlines.h │ │ ├── JSPromise.cpp │ │ ├── JSPromise.h │ │ ├── JSPromiseConstructor.cpp │ │ ├── JSPromiseConstructor.h │ │ ├── JSPromiseDeferred.cpp │ │ ├── JSPromiseDeferred.h │ │ ├── JSPromisePrototype.cpp │ │ ├── JSPromisePrototype.h │ │ ├── JSPropertyNameEnumerator.cpp │ │ ├── JSPropertyNameEnumerator.h │ │ ├── JSProxy.cpp │ │ ├── JSProxy.h │ │ ├── JSRunLoopTimer.cpp │ │ ├── JSRunLoopTimer.h │ │ ├── JSScope.cpp │ │ ├── JSScope.h │ │ ├── JSScriptFetchParameters.cpp │ │ ├── JSScriptFetchParameters.h │ │ ├── JSScriptFetcher.cpp │ │ ├── JSScriptFetcher.h │ │ ├── JSSegmentedVariableObject.cpp │ │ ├── JSSegmentedVariableObject.h │ │ ├── JSSet.cpp │ │ ├── JSSet.h │ │ ├── JSSetIterator.cpp │ │ ├── JSSetIterator.h │ │ ├── JSSourceCode.cpp │ │ ├── JSSourceCode.h │ │ ├── JSString.cpp │ │ ├── JSString.h │ │ ├── JSStringHeapCellType.cpp │ │ ├── JSStringHeapCellType.h │ │ ├── JSStringInlines.h │ │ ├── JSStringIterator.cpp │ │ ├── JSStringIterator.h │ │ ├── JSStringJoiner.cpp │ │ ├── JSStringJoiner.h │ │ ├── JSSymbolTableObject.cpp │ │ ├── JSSymbolTableObject.h │ │ ├── JSTemplateObjectDescriptor.cpp │ │ ├── JSTemplateObjectDescriptor.h │ │ ├── JSType.cpp │ │ ├── JSType.h │ │ ├── JSTypeInfo.h │ │ ├── JSTypedArrayConstructors.cpp │ │ ├── JSTypedArrayConstructors.h │ │ ├── JSTypedArrayPrototypes.cpp │ │ ├── JSTypedArrayPrototypes.h │ │ ├── JSTypedArrayViewConstructor.cpp │ │ ├── JSTypedArrayViewConstructor.h │ │ ├── JSTypedArrayViewPrototype.cpp │ │ ├── JSTypedArrayViewPrototype.h │ │ ├── JSTypedArrays.cpp │ │ ├── JSTypedArrays.h │ │ ├── JSUint16Array.h │ │ ├── JSUint32Array.h │ │ ├── JSUint8Array.h │ │ ├── JSUint8ClampedArray.h │ │ ├── JSWeakMap.cpp │ │ ├── JSWeakMap.h │ │ ├── JSWeakObjectRef.cpp │ │ ├── JSWeakObjectRef.h │ │ ├── JSWeakSet.cpp │ │ ├── JSWeakSet.h │ │ ├── JSWithScope.cpp │ │ ├── JSWithScope.h │ │ ├── JSWrapperObject.cpp │ │ ├── JSWrapperObject.h │ │ ├── LazyClassStructure.cpp │ │ ├── LazyClassStructure.h │ │ ├── LazyClassStructureInlines.h │ │ ├── LazyProperty.h │ │ ├── LazyPropertyInlines.h │ │ ├── LeafExecutable.cpp │ │ ├── LeafExecutable.h │ │ ├── LiteralParser.cpp │ │ ├── LiteralParser.h │ │ ├── Lookup.cpp │ │ ├── Lookup.h │ │ ├── MachineContext.h │ │ ├── MapConstructor.cpp │ │ ├── MapConstructor.h │ │ ├── MapIteratorPrototype.cpp │ │ ├── MapIteratorPrototype.h │ │ ├── MapPrototype.cpp │ │ ├── MapPrototype.h │ │ ├── MatchResult.cpp │ │ ├── MatchResult.h │ │ ├── MathCommon.cpp │ │ ├── MathCommon.h │ │ ├── MathObject.cpp │ │ ├── MathObject.h │ │ ├── MemoryStatistics.cpp │ │ ├── MemoryStatistics.h │ │ ├── Microtask.h │ │ ├── MinimumReservedZoneSize.h │ │ ├── ModuleProgramExecutable.cpp │ │ ├── ModuleProgramExecutable.h │ │ ├── NativeErrorConstructor.cpp │ │ ├── NativeErrorConstructor.h │ │ ├── NativeErrorPrototype.cpp │ │ ├── NativeErrorPrototype.h │ │ ├── NativeExecutable.cpp │ │ ├── NativeExecutable.h │ │ ├── NativeFunction.h │ │ ├── NativeStdFunctionCell.cpp │ │ ├── NativeStdFunctionCell.h │ │ ├── NullGetterFunction.cpp │ │ ├── NullGetterFunction.h │ │ ├── NullSetterFunction.cpp │ │ ├── NullSetterFunction.h │ │ ├── NumberConstructor.cpp │ │ ├── NumberConstructor.h │ │ ├── NumberObject.cpp │ │ ├── NumberObject.h │ │ ├── NumberPrototype.cpp │ │ ├── NumberPrototype.h │ │ ├── NumericStrings.h │ │ ├── ObjectConstructor.cpp │ │ ├── ObjectConstructor.h │ │ ├── ObjectInitializationScope.cpp │ │ ├── ObjectInitializationScope.h │ │ ├── ObjectPropertyChangeAdaptiveWatchpoint.h │ │ ├── ObjectPrototype.cpp │ │ ├── ObjectPrototype.h │ │ ├── ObjectToStringAdaptiveStructureWatchpoint.cpp │ │ ├── ObjectToStringAdaptiveStructureWatchpoint.h │ │ ├── Operations.cpp │ │ ├── Operations.h │ │ ├── Options.cpp │ │ ├── Options.h │ │ ├── ParseInt.h │ │ ├── PrivateName.h │ │ ├── ProgramExecutable.cpp │ │ ├── ProgramExecutable.h │ │ ├── PromiseDeferredTimer.cpp │ │ ├── PromiseDeferredTimer.h │ │ ├── PropertyDescriptor.cpp │ │ ├── PropertyDescriptor.h │ │ ├── PropertyMapHashTable.h │ │ ├── PropertyName.h │ │ ├── PropertyNameArray.h │ │ ├── PropertyOffset.h │ │ ├── PropertySlot.cpp │ │ ├── PropertySlot.h │ │ ├── PropertyStorage.h │ │ ├── PropertyTable.cpp │ │ ├── Protect.h │ │ ├── PrototypeKey.h │ │ ├── ProxyConstructor.cpp │ │ ├── ProxyConstructor.h │ │ ├── ProxyObject.cpp │ │ ├── ProxyObject.h │ │ ├── ProxyRevoke.cpp │ │ ├── ProxyRevoke.h │ │ ├── PureNaN.h │ │ ├── PutDirectIndexMode.h │ │ ├── PutPropertySlot.h │ │ ├── RandomizingFuzzerAgent.cpp │ │ ├── RandomizingFuzzerAgent.h │ │ ├── ReflectObject.cpp │ │ ├── ReflectObject.h │ │ ├── RegExp.cpp │ │ ├── RegExp.h │ │ ├── RegExpCache.cpp │ │ ├── RegExpCache.h │ │ ├── RegExpCachedResult.cpp │ │ ├── RegExpCachedResult.h │ │ ├── RegExpConstructor.cpp │ │ ├── RegExpConstructor.h │ │ ├── RegExpGlobalData.cpp │ │ ├── RegExpGlobalData.h │ │ ├── RegExpGlobalDataInlines.h │ │ ├── RegExpInlines.h │ │ ├── RegExpKey.h │ │ ├── RegExpMatchesArray.cpp │ │ ├── RegExpMatchesArray.h │ │ ├── RegExpObject.cpp │ │ ├── RegExpObject.h │ │ ├── RegExpObjectInlines.h │ │ ├── RegExpPrototype.cpp │ │ ├── RegExpPrototype.h │ │ ├── RegExpStringIteratorPrototype.cpp │ │ ├── RegExpStringIteratorPrototype.h │ │ ├── RuntimeFlags.h │ │ ├── RuntimeType.cpp │ │ ├── RuntimeType.h │ │ ├── SamplingCounter.cpp │ │ ├── SamplingCounter.h │ │ ├── SamplingProfiler.cpp │ │ ├── SamplingProfiler.h │ │ ├── ScopeOffset.cpp │ │ ├── ScopeOffset.h │ │ ├── ScopedArguments.cpp │ │ ├── ScopedArguments.h │ │ ├── ScopedArgumentsTable.cpp │ │ ├── ScopedArgumentsTable.h │ │ ├── ScriptExecutable.cpp │ │ ├── ScriptExecutable.h │ │ ├── ScriptFetchParameters.h │ │ ├── ScriptFetcher.h │ │ ├── SetConstructor.cpp │ │ ├── SetConstructor.h │ │ ├── SetIteratorPrototype.cpp │ │ ├── SetIteratorPrototype.h │ │ ├── SetPrototype.cpp │ │ ├── SetPrototype.h │ │ ├── SimpleTypedArrayController.cpp │ │ ├── SimpleTypedArrayController.h │ │ ├── SlowPathReturnType.h │ │ ├── SmallStrings.cpp │ │ ├── SmallStrings.h │ │ ├── SourceOrigin.h │ │ ├── SparseArrayValueMap.cpp │ │ ├── SparseArrayValueMap.h │ │ ├── StackAlignment.h │ │ ├── StackFrame.cpp │ │ ├── StackFrame.h │ │ ├── StrictEvalActivation.cpp │ │ ├── StrictEvalActivation.h │ │ ├── StringConstructor.cpp │ │ ├── StringConstructor.h │ │ ├── StringIteratorPrototype.cpp │ │ ├── StringIteratorPrototype.h │ │ ├── StringObject.cpp │ │ ├── StringObject.h │ │ ├── StringPrototype.cpp │ │ ├── StringPrototype.h │ │ ├── StringPrototypeInlines.h │ │ ├── StringRecursionChecker.cpp │ │ ├── StringRecursionChecker.h │ │ ├── Structure.cpp │ │ ├── Structure.h │ │ ├── StructureCache.cpp │ │ ├── StructureCache.h │ │ ├── StructureChain.cpp │ │ ├── StructureChain.h │ │ ├── StructureIDBlob.h │ │ ├── StructureIDTable.cpp │ │ ├── StructureIDTable.h │ │ ├── StructureInlines.h │ │ ├── StructureRareData.cpp │ │ ├── StructureRareData.h │ │ ├── StructureRareDataInlines.h │ │ ├── StructureTransitionTable.h │ │ ├── SubspaceAccess.h │ │ ├── Symbol.cpp │ │ ├── Symbol.h │ │ ├── SymbolConstructor.cpp │ │ ├── SymbolConstructor.h │ │ ├── SymbolObject.cpp │ │ ├── SymbolObject.h │ │ ├── SymbolPrototype.cpp │ │ ├── SymbolPrototype.h │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── SymbolTableInlines.h │ │ ├── SymbolTableOrScopeDepth.h │ │ ├── TemplateObjectDescriptor.cpp │ │ ├── TemplateObjectDescriptor.h │ │ ├── TestRunnerUtils.cpp │ │ ├── TestRunnerUtils.h │ │ ├── ThrowScope.cpp │ │ ├── ThrowScope.h │ │ ├── ToNativeFromValue.h │ │ ├── TypeError.h │ │ ├── TypeLocationCache.cpp │ │ ├── TypeLocationCache.h │ │ ├── TypeProfiler.cpp │ │ ├── TypeProfiler.h │ │ ├── TypeProfilerLog.cpp │ │ ├── TypeProfilerLog.h │ │ ├── TypeSet.cpp │ │ ├── TypeSet.h │ │ ├── TypedArrayAdaptors.h │ │ ├── TypedArrayController.cpp │ │ ├── TypedArrayController.h │ │ ├── TypedArrayInlines.h │ │ ├── TypedArrayType.cpp │ │ ├── TypedArrayType.h │ │ ├── TypedArrays.h │ │ ├── TypeofType.cpp │ │ ├── TypeofType.h │ │ ├── Uint16Array.h │ │ ├── Uint16WithFraction.h │ │ ├── Uint32Array.h │ │ ├── Uint8Array.h │ │ ├── Uint8ClampedArray.h │ │ ├── VM.cpp │ │ ├── VM.h │ │ ├── VMEntryScope.cpp │ │ ├── VMEntryScope.h │ │ ├── VMInlines.h │ │ ├── VMTraps.cpp │ │ ├── VMTraps.h │ │ ├── VarOffset.cpp │ │ ├── VarOffset.h │ │ ├── Watchdog.cpp │ │ ├── Watchdog.h │ │ ├── WeakGCMap.h │ │ ├── WeakGCMapInlines.h │ │ ├── WeakMapConstructor.cpp │ │ ├── WeakMapConstructor.h │ │ ├── WeakMapImpl.cpp │ │ ├── WeakMapImpl.h │ │ ├── WeakMapImplInlines.h │ │ ├── WeakMapPrototype.cpp │ │ ├── WeakMapPrototype.h │ │ ├── WeakObjectRefConstructor.cpp │ │ ├── WeakObjectRefConstructor.h │ │ ├── WeakObjectRefPrototype.cpp │ │ ├── WeakObjectRefPrototype.h │ │ ├── WeakSetConstructor.cpp │ │ ├── WeakSetConstructor.h │ │ ├── WeakSetPrototype.cpp │ │ ├── WeakSetPrototype.h │ │ ├── WriteBarrier.h │ │ └── WriteBarrierInlines.h │ ├── shell │ │ ├── CMakeLists.txt │ │ ├── DLLLauncherMain.cpp │ │ ├── PlatformGTK.cmake │ │ ├── PlatformMac.cmake │ │ ├── PlatformPlayStation.cmake │ │ ├── PlatformUltralightLinux.cmake │ │ ├── PlatformWPE.cmake │ │ ├── PlatformWin.cmake │ │ └── playstation │ │ │ ├── Initializer.cpp │ │ │ └── TestShell.cpp │ ├── testRegExp.cpp │ ├── testapi.entitlements │ ├── tested-symbols.symlst │ ├── testmem │ │ └── testmem.mm │ ├── tools │ │ ├── CellList.cpp │ │ ├── CellList.h │ │ ├── CellProfile.h │ │ ├── CodeProfile.cpp │ │ ├── CodeProfile.h │ │ ├── CodeProfiling.cpp │ │ ├── CodeProfiling.h │ │ ├── CompilerTimingScope.cpp │ │ ├── CompilerTimingScope.h │ │ ├── FunctionOverrides.cpp │ │ ├── FunctionOverrides.h │ │ ├── FunctionWhitelist.cpp │ │ ├── FunctionWhitelist.h │ │ ├── HeapVerifier.cpp │ │ ├── HeapVerifier.h │ │ ├── JSDollarVM.cpp │ │ ├── JSDollarVM.h │ │ ├── ProfileTreeNode.h │ │ ├── SigillCrashAnalyzer.cpp │ │ ├── SigillCrashAnalyzer.h │ │ ├── TieredMMapArray.h │ │ ├── VMInspector.cpp │ │ └── VMInspector.h │ ├── ucd │ │ ├── CaseFolding.txt │ │ ├── DerivedBinaryProperties.txt │ │ ├── DerivedCoreProperties.txt │ │ ├── DerivedNormalizationProps.txt │ │ ├── PropList.txt │ │ ├── PropertyAliases.txt │ │ ├── PropertyValueAliases.txt │ │ ├── ScriptExtensions.txt │ │ ├── Scripts.txt │ │ ├── UnicodeData.txt │ │ ├── emoji-data.txt │ │ └── language-subtag-registry.txt │ ├── wasm │ │ ├── WasmAirIRGenerator.cpp │ │ ├── WasmAirIRGenerator.h │ │ ├── WasmB3IRGenerator.cpp │ │ ├── WasmB3IRGenerator.h │ │ ├── WasmBBQPlan.cpp │ │ ├── WasmBBQPlan.h │ │ ├── WasmBBQPlanInlines.h │ │ ├── WasmBinding.cpp │ │ ├── WasmBinding.h │ │ ├── WasmCallee.cpp │ │ ├── WasmCallee.h │ │ ├── WasmCallingConvention.cpp │ │ ├── WasmCallingConvention.h │ │ ├── WasmCapabilities.h │ │ ├── WasmCodeBlock.cpp │ │ ├── WasmCodeBlock.h │ │ ├── WasmContext.h │ │ ├── WasmContextInlines.h │ │ ├── WasmCreationMode.h │ │ ├── WasmEmbedder.h │ │ ├── WasmExceptionType.h │ │ ├── WasmFaultSignalHandler.cpp │ │ ├── WasmFaultSignalHandler.h │ │ ├── WasmFormat.cpp │ │ ├── WasmFormat.h │ │ ├── WasmFunctionParser.h │ │ ├── WasmIndexOrName.cpp │ │ ├── WasmIndexOrName.h │ │ ├── WasmInstance.cpp │ │ ├── WasmInstance.h │ │ ├── WasmLimits.h │ │ ├── WasmMachineThreads.cpp │ │ ├── WasmMachineThreads.h │ │ ├── WasmMemory.cpp │ │ ├── WasmMemory.h │ │ ├── WasmMemoryInformation.cpp │ │ ├── WasmMemoryInformation.h │ │ ├── WasmMemoryMode.cpp │ │ ├── WasmMemoryMode.h │ │ ├── WasmModule.cpp │ │ ├── WasmModule.h │ │ ├── WasmModuleInformation.cpp │ │ ├── WasmModuleInformation.h │ │ ├── WasmModuleParser.cpp │ │ ├── WasmModuleParser.h │ │ ├── WasmName.h │ │ ├── WasmNameSection.h │ │ ├── WasmNameSectionParser.cpp │ │ ├── WasmNameSectionParser.h │ │ ├── WasmOMGPlan.cpp │ │ ├── WasmOMGPlan.h │ │ ├── WasmOpcodeOrigin.cpp │ │ ├── WasmOpcodeOrigin.h │ │ ├── WasmPageCount.cpp │ │ ├── WasmPageCount.h │ │ ├── WasmParser.h │ │ ├── WasmPlan.cpp │ │ ├── WasmPlan.h │ │ ├── WasmSectionParser.cpp │ │ ├── WasmSectionParser.h │ │ ├── WasmSections.h │ │ ├── WasmSignature.cpp │ │ ├── WasmSignature.h │ │ ├── WasmSignatureInlines.h │ │ ├── WasmStreamingParser.cpp │ │ ├── WasmStreamingParser.h │ │ ├── WasmTable.cpp │ │ ├── WasmTable.h │ │ ├── WasmThunks.cpp │ │ ├── WasmThunks.h │ │ ├── WasmTierUpCount.h │ │ ├── WasmValidate.cpp │ │ ├── WasmValidate.h │ │ ├── WasmWorklist.cpp │ │ ├── WasmWorklist.h │ │ ├── generateWasm.py │ │ ├── generateWasmB3IRGeneratorInlinesHeader.py │ │ ├── generateWasmOpsHeader.py │ │ ├── generateWasmValidateInlinesHeader.py │ │ ├── js │ │ │ ├── JSToWasm.cpp │ │ │ ├── JSToWasm.h │ │ │ ├── JSToWasmICCallee.cpp │ │ │ ├── JSToWasmICCallee.h │ │ │ ├── JSWebAssembly.cpp │ │ │ ├── JSWebAssembly.h │ │ │ ├── JSWebAssemblyCodeBlock.cpp │ │ │ ├── JSWebAssemblyCodeBlock.h │ │ │ ├── JSWebAssemblyCodeBlockHeapCellType.cpp │ │ │ ├── JSWebAssemblyCodeBlockHeapCellType.h │ │ │ ├── JSWebAssemblyCompileError.cpp │ │ │ ├── JSWebAssemblyCompileError.h │ │ │ ├── JSWebAssemblyHelpers.h │ │ │ ├── JSWebAssemblyInstance.cpp │ │ │ ├── JSWebAssemblyInstance.h │ │ │ ├── JSWebAssemblyLinkError.cpp │ │ │ ├── JSWebAssemblyLinkError.h │ │ │ ├── JSWebAssemblyMemory.cpp │ │ │ ├── JSWebAssemblyMemory.h │ │ │ ├── JSWebAssemblyModule.cpp │ │ │ ├── JSWebAssemblyModule.h │ │ │ ├── JSWebAssemblyRuntimeError.cpp │ │ │ ├── JSWebAssemblyRuntimeError.h │ │ │ ├── JSWebAssemblyTable.cpp │ │ │ ├── JSWebAssemblyTable.h │ │ │ ├── WasmToJS.cpp │ │ │ ├── WasmToJS.h │ │ │ ├── WebAssemblyCompileErrorConstructor.cpp │ │ │ ├── WebAssemblyCompileErrorConstructor.h │ │ │ ├── WebAssemblyCompileErrorPrototype.cpp │ │ │ ├── WebAssemblyCompileErrorPrototype.h │ │ │ ├── WebAssemblyFunction.cpp │ │ │ ├── WebAssemblyFunction.h │ │ │ ├── WebAssemblyFunctionBase.cpp │ │ │ ├── WebAssemblyFunctionBase.h │ │ │ ├── WebAssemblyFunctionHeapCellType.cpp │ │ │ ├── WebAssemblyFunctionHeapCellType.h │ │ │ ├── WebAssemblyInstanceConstructor.cpp │ │ │ ├── WebAssemblyInstanceConstructor.h │ │ │ ├── WebAssemblyInstancePrototype.cpp │ │ │ ├── WebAssemblyInstancePrototype.h │ │ │ ├── WebAssemblyLinkErrorConstructor.cpp │ │ │ ├── WebAssemblyLinkErrorConstructor.h │ │ │ ├── WebAssemblyLinkErrorPrototype.cpp │ │ │ ├── WebAssemblyLinkErrorPrototype.h │ │ │ ├── WebAssemblyMemoryConstructor.cpp │ │ │ ├── WebAssemblyMemoryConstructor.h │ │ │ ├── WebAssemblyMemoryPrototype.cpp │ │ │ ├── WebAssemblyMemoryPrototype.h │ │ │ ├── WebAssemblyModuleConstructor.cpp │ │ │ ├── WebAssemblyModuleConstructor.h │ │ │ ├── WebAssemblyModulePrototype.cpp │ │ │ ├── WebAssemblyModulePrototype.h │ │ │ ├── WebAssemblyModuleRecord.cpp │ │ │ ├── WebAssemblyModuleRecord.h │ │ │ ├── WebAssemblyPrototype.cpp │ │ │ ├── WebAssemblyPrototype.h │ │ │ ├── WebAssemblyRuntimeErrorConstructor.cpp │ │ │ ├── WebAssemblyRuntimeErrorConstructor.h │ │ │ ├── WebAssemblyRuntimeErrorPrototype.cpp │ │ │ ├── WebAssemblyRuntimeErrorPrototype.h │ │ │ ├── WebAssemblyTableConstructor.cpp │ │ │ ├── WebAssemblyTableConstructor.h │ │ │ ├── WebAssemblyTablePrototype.cpp │ │ │ ├── WebAssemblyTablePrototype.h │ │ │ ├── WebAssemblyToJSCallee.cpp │ │ │ ├── WebAssemblyToJSCallee.h │ │ │ ├── WebAssemblyWrapperFunction.cpp │ │ │ └── WebAssemblyWrapperFunction.h │ │ └── wasm.json │ └── yarr │ │ ├── RegularExpression.cpp │ │ ├── RegularExpression.h │ │ ├── Yarr.h │ │ ├── YarrCanonicalize.h │ │ ├── YarrCanonicalizeUCS2.cpp │ │ ├── YarrCanonicalizeUCS2.js │ │ ├── YarrDisassembler.cpp │ │ ├── YarrDisassembler.h │ │ ├── YarrErrorCode.cpp │ │ ├── YarrErrorCode.h │ │ ├── YarrFlags.cpp │ │ ├── YarrFlags.h │ │ ├── YarrInterpreter.cpp │ │ ├── YarrInterpreter.h │ │ ├── YarrJIT.cpp │ │ ├── YarrJIT.h │ │ ├── YarrParser.h │ │ ├── YarrPattern.cpp │ │ ├── YarrPattern.h │ │ ├── YarrSyntaxChecker.cpp │ │ ├── YarrSyntaxChecker.h │ │ ├── YarrUnicodeProperties.cpp │ │ ├── YarrUnicodeProperties.h │ │ ├── create_regex_tables │ │ ├── generateYarrCanonicalizeUnicode │ │ ├── generateYarrUnicodePropertyTables.py │ │ └── hasher.py ├── SQLite │ ├── CMakeLists.txt │ ├── sqlite3.c │ ├── sqlite3.h │ └── sqlite3ext.h ├── WTF │ ├── CMakeLists.txt │ ├── Configurations │ │ ├── Base.xcconfig │ │ ├── CopyWTFHeaders.xcconfig │ │ ├── DebugRelease.xcconfig │ │ ├── SDKVariant.xcconfig │ │ └── WTF.xcconfig │ ├── Makefile │ ├── Scripts │ │ └── generate-unified-source-bundles.rb │ ├── WTF.vcxproj │ │ └── WTF.proj │ ├── WTF.xcodeproj │ │ └── project.pbxproj │ ├── benchmarks │ │ ├── ConditionSpeedTest.cpp │ │ ├── HashSetDFGReplay.cpp │ │ ├── LockFairnessTest.cpp │ │ ├── LockSpeedTest.cpp │ │ └── ToyLocks.h │ ├── config.h │ ├── icu │ │ ├── LICENSE │ │ ├── README │ │ └── unicode │ │ │ ├── .gitattributes │ │ │ ├── alphaindex.h │ │ │ ├── appendable.h │ │ │ ├── basictz.h │ │ │ ├── brkiter.h │ │ │ ├── bytestream.h │ │ │ ├── bytestrie.h │ │ │ ├── bytestriebuilder.h │ │ │ ├── calendar.h │ │ │ ├── caniter.h │ │ │ ├── chariter.h │ │ │ ├── choicfmt.h │ │ │ ├── coleitr.h │ │ │ ├── coll.h │ │ │ ├── compactdecimalformat.h │ │ │ ├── curramt.h │ │ │ ├── currpinf.h │ │ │ ├── currunit.h │ │ │ ├── datefmt.h │ │ │ ├── dbbi.h │ │ │ ├── dcfmtsym.h │ │ │ ├── decimfmt.h │ │ │ ├── docmain.h │ │ │ ├── dtfmtsym.h │ │ │ ├── dtintrv.h │ │ │ ├── dtitvfmt.h │ │ │ ├── dtitvinf.h │ │ │ ├── dtptngen.h │ │ │ ├── dtrule.h │ │ │ ├── enumset.h │ │ │ ├── errorcode.h │ │ │ ├── fieldpos.h │ │ │ ├── filteredbrk.h │ │ │ ├── fmtable.h │ │ │ ├── format.h │ │ │ ├── fpositer.h │ │ │ ├── gender.h │ │ │ ├── gregocal.h │ │ │ ├── icudataver.h │ │ │ ├── icuplug.h │ │ │ ├── idna.h │ │ │ ├── listformatter.h │ │ │ ├── localpointer.h │ │ │ ├── locdspnm.h │ │ │ ├── locid.h │ │ │ ├── measfmt.h │ │ │ ├── measunit.h │ │ │ ├── measure.h │ │ │ ├── messagepattern.h │ │ │ ├── msgfmt.h │ │ │ ├── normalizer2.h │ │ │ ├── normlzr.h │ │ │ ├── numfmt.h │ │ │ ├── numsys.h │ │ │ ├── parseerr.h │ │ │ ├── parsepos.h │ │ │ ├── platform.h │ │ │ ├── plurfmt.h │ │ │ ├── plurrule.h │ │ │ ├── ptypes.h │ │ │ ├── putil.h │ │ │ ├── rbbi.h │ │ │ ├── rbnf.h │ │ │ ├── rbtz.h │ │ │ ├── regex.h │ │ │ ├── region.h │ │ │ ├── reldatefmt.h │ │ │ ├── rep.h │ │ │ ├── resbund.h │ │ │ ├── schriter.h │ │ │ ├── scientificnumberformatter.h │ │ │ ├── search.h │ │ │ ├── selfmt.h │ │ │ ├── simpletz.h │ │ │ ├── smpdtfmt.h │ │ │ ├── sortkey.h │ │ │ ├── std_string.h │ │ │ ├── strenum.h │ │ │ ├── stringpiece.h │ │ │ ├── stringtriebuilder.h │ │ │ ├── stsearch.h │ │ │ ├── symtable.h │ │ │ ├── tblcoll.h │ │ │ ├── timezone.h │ │ │ ├── tmunit.h │ │ │ ├── tmutamt.h │ │ │ ├── tmutfmt.h │ │ │ ├── translit.h │ │ │ ├── tzfmt.h │ │ │ ├── tznames.h │ │ │ ├── tzrule.h │ │ │ ├── tztrans.h │ │ │ ├── ubidi.h │ │ │ ├── ubrk.h │ │ │ ├── ucal.h │ │ │ ├── ucasemap.h │ │ │ ├── ucat.h │ │ │ ├── uchar.h │ │ │ ├── ucharstrie.h │ │ │ ├── ucharstriebuilder.h │ │ │ ├── uchriter.h │ │ │ ├── uclean.h │ │ │ ├── ucnv.h │ │ │ ├── ucnv_cb.h │ │ │ ├── ucnv_err.h │ │ │ ├── ucnvsel.h │ │ │ ├── ucol.h │ │ │ ├── ucoleitr.h │ │ │ ├── uconfig.h │ │ │ ├── ucsdet.h │ │ │ ├── ucurr.h │ │ │ ├── udat.h │ │ │ ├── udata.h │ │ │ ├── udateintervalformat.h │ │ │ ├── udatpg.h │ │ │ ├── udisplaycontext.h │ │ │ ├── uenum.h │ │ │ ├── ufieldpositer.h │ │ │ ├── uformattable.h │ │ │ ├── ugender.h │ │ │ ├── uidna.h │ │ │ ├── uiter.h │ │ │ ├── uldnames.h │ │ │ ├── ulistformatter.h │ │ │ ├── uloc.h │ │ │ ├── ulocdata.h │ │ │ ├── umachine.h │ │ │ ├── umisc.h │ │ │ ├── umsg.h │ │ │ ├── unifilt.h │ │ │ ├── unifunct.h │ │ │ ├── unimatch.h │ │ │ ├── unirepl.h │ │ │ ├── uniset.h │ │ │ ├── unistr.h │ │ │ ├── unorm.h │ │ │ ├── unorm2.h │ │ │ ├── unum.h │ │ │ ├── unumsys.h │ │ │ ├── uobject.h │ │ │ ├── upluralrules.h │ │ │ ├── uregex.h │ │ │ ├── uregion.h │ │ │ ├── urename.h │ │ │ ├── urep.h │ │ │ ├── ures.h │ │ │ ├── uscript.h │ │ │ ├── usearch.h │ │ │ ├── uset.h │ │ │ ├── usetiter.h │ │ │ ├── ushape.h │ │ │ ├── uspoof.h │ │ │ ├── usprep.h │ │ │ ├── ustdio.h │ │ │ ├── ustream.h │ │ │ ├── ustring.h │ │ │ ├── ustringtrie.h │ │ │ ├── utext.h │ │ │ ├── utf.h │ │ │ ├── utf16.h │ │ │ ├── utf32.h │ │ │ ├── utf8.h │ │ │ ├── utf_old.h │ │ │ ├── utmscale.h │ │ │ ├── utrace.h │ │ │ ├── utrans.h │ │ │ ├── utypes.h │ │ │ ├── uvernum.h │ │ │ ├── uversion.h │ │ │ └── vtzone.h │ └── wtf │ │ ├── ASCIICType.cpp │ │ ├── ASCIICType.h │ │ ├── AggregateLogger.h │ │ ├── Algorithms.h │ │ ├── Assertions.cpp │ │ ├── Assertions.h │ │ ├── Atomics.h │ │ ├── AutodrainedPool.h │ │ ├── AutomaticThread.cpp │ │ ├── AutomaticThread.h │ │ ├── BackwardsGraph.h │ │ ├── Bag.h │ │ ├── BagToHashMap.h │ │ ├── BitVector.cpp │ │ ├── BitVector.h │ │ ├── Bitmap.h │ │ ├── BlockObjCExceptions.h │ │ ├── BlockObjCExceptions.mm │ │ ├── BlockPtr.h │ │ ├── BloomFilter.h │ │ ├── BooleanLattice.h │ │ ├── Box.h │ │ ├── Brigand.h │ │ ├── BubbleSort.h │ │ ├── BumpPointerAllocator.h │ │ ├── ByteOrder.h │ │ ├── CMakeLists.txt │ │ ├── CPUTime.cpp │ │ ├── CPUTime.h │ │ ├── CagedPtr.h │ │ ├── CagedUniquePtr.h │ │ ├── CallbackAggregator.h │ │ ├── CheckedArithmetic.h │ │ ├── CheckedBoolean.h │ │ ├── ClockType.cpp │ │ ├── ClockType.h │ │ ├── CommaPrinter.h │ │ ├── CompactPointerTuple.h │ │ ├── CompilationThread.cpp │ │ ├── CompilationThread.h │ │ ├── Compiler.h │ │ ├── CompletionHandler.h │ │ ├── ConcurrentBuffer.h │ │ ├── ConcurrentPtrHashSet.cpp │ │ ├── ConcurrentPtrHashSet.h │ │ ├── ConcurrentVector.h │ │ ├── Condition.h │ │ ├── CountingLock.cpp │ │ ├── CountingLock.h │ │ ├── CrossThreadCopier.cpp │ │ ├── CrossThreadCopier.h │ │ ├── CrossThreadQueue.h │ │ ├── CrossThreadTask.h │ │ ├── CrossThreadTaskHandler.cpp │ │ ├── CrossThreadTaskHandler.h │ │ ├── CryptographicUtilities.cpp │ │ ├── CryptographicUtilities.h │ │ ├── CryptographicallyRandomNumber.cpp │ │ ├── CryptographicallyRandomNumber.h │ │ ├── CurrentTime.cpp │ │ ├── DataLog.cpp │ │ ├── DataLog.h │ │ ├── DateMath.cpp │ │ ├── DateMath.h │ │ ├── DebugUtilities.h │ │ ├── DeferrableRefCounted.h │ │ ├── Deque.h │ │ ├── DisallowCType.h │ │ ├── Dominators.h │ │ ├── DoublyLinkedList.h │ │ ├── DumbPtrTraits.h │ │ ├── DumbValueTraits.h │ │ ├── EnumTraits.h │ │ ├── Expected.h │ │ ├── ExportMacros.h │ │ ├── FastBitVector.cpp │ │ ├── FastBitVector.h │ │ ├── FastMalloc.cpp │ │ ├── FastMalloc.h │ │ ├── FastTLS.h │ │ ├── FeatureDefines.h │ │ ├── FileMetadata.h │ │ ├── FilePrintStream.cpp │ │ ├── FilePrintStream.h │ │ ├── FileSystem.cpp │ │ ├── FileSystem.h │ │ ├── FlipBytes.h │ │ ├── ForbidHeapAllocation.h │ │ ├── Forward.h │ │ ├── Function.h │ │ ├── FunctionDispatcher.cpp │ │ ├── FunctionDispatcher.h │ │ ├── FunctionTraits.h │ │ ├── GetPtr.h │ │ ├── Gigacage.cpp │ │ ├── Gigacage.h │ │ ├── GlobalVersion.cpp │ │ ├── GlobalVersion.h │ │ ├── GraphNodeWorklist.h │ │ ├── GregorianDateTime.cpp │ │ ├── GregorianDateTime.h │ │ ├── HashCountedSet.h │ │ ├── HashFunctions.h │ │ ├── HashIterators.h │ │ ├── HashMap.h │ │ ├── HashMethod.h │ │ ├── HashSet.h │ │ ├── HashTable.cpp │ │ ├── HashTable.h │ │ ├── HashTraits.h │ │ ├── Hasher.h │ │ ├── HexNumber.cpp │ │ ├── HexNumber.h │ │ ├── Identified.h │ │ ├── Indenter.h │ │ ├── IndexKeyType.h │ │ ├── IndexMap.h │ │ ├── IndexSet.h │ │ ├── IndexSparseSet.h │ │ ├── IndexedContainerIterator.h │ │ ├── InlineASM.h │ │ ├── Insertion.h │ │ ├── InstanceCounted.h │ │ ├── IsoMalloc.h │ │ ├── IsoMallocInlines.h │ │ ├── IteratorAdaptors.h │ │ ├── IteratorRange.h │ │ ├── JSONValues.cpp │ │ ├── JSONValues.h │ │ ├── JSValueMalloc.cpp │ │ ├── JSValueMalloc.h │ │ ├── KeyValuePair.h │ │ ├── LEBDecoder.h │ │ ├── Language.cpp │ │ ├── Language.h │ │ ├── ListDump.h │ │ ├── ListHashSet.h │ │ ├── Liveness.h │ │ ├── Lock.cpp │ │ ├── Lock.h │ │ ├── LockAlgorithm.h │ │ ├── LockAlgorithmInlines.h │ │ ├── LockedPrintStream.cpp │ │ ├── LockedPrintStream.h │ │ ├── Locker.h │ │ ├── LocklessBag.h │ │ ├── Logger.cpp │ │ ├── Logger.h │ │ ├── LoggerHelper.h │ │ ├── LoggingAccumulator.h │ │ ├── LoggingHashID.h │ │ ├── LoggingHashMap.h │ │ ├── LoggingHashSet.h │ │ ├── LoggingHashTraits.h │ │ ├── MD5.cpp │ │ ├── MD5.h │ │ ├── MachSendRight.h │ │ ├── MainThread.cpp │ │ ├── MainThread.h │ │ ├── MallocPtr.h │ │ ├── Markable.h │ │ ├── MathExtras.h │ │ ├── MediaTime.cpp │ │ ├── MediaTime.h │ │ ├── MemoryFootprint.h │ │ ├── MemoryPressureHandler.cpp │ │ ├── MemoryPressureHandler.h │ │ ├── MemoryProfiler.cpp │ │ ├── MemoryProfiler.h │ │ ├── MemoryProfiler_CppSymbols.h │ │ ├── MemoryProfiler_WinHeap.cpp │ │ ├── MemoryProfiler_WinHeap.h │ │ ├── MemoryProfiler_Windows.h │ │ ├── MessageQueue.h │ │ ├── MetaAllocator.cpp │ │ ├── MetaAllocator.h │ │ ├── MetaAllocatorHandle.h │ │ ├── MetaAllocatorPtr.h │ │ ├── MonotonicTime.cpp │ │ ├── MonotonicTime.h │ │ ├── NakedPtr.h │ │ ├── NaturalLoops.h │ │ ├── NeverDestroyed.h │ │ ├── NoLock.h │ │ ├── NoTailCalls.h │ │ ├── Noncopyable.h │ │ ├── Nonmovable.h │ │ ├── NotFound.h │ │ ├── NumberOfCores.cpp │ │ ├── NumberOfCores.h │ │ ├── OSAllocator.h │ │ ├── OSObjectPtr.h │ │ ├── OSRandomSource.cpp │ │ ├── OSRandomSource.h │ │ ├── ObjCRuntimeExtras.h │ │ ├── ObjectIdentifier.cpp │ │ ├── ObjectIdentifier.h │ │ ├── OptionSet.h │ │ ├── Optional.h │ │ ├── OrderMaker.h │ │ ├── Packed.h │ │ ├── PackedIntVector.h │ │ ├── PageAllocation.h │ │ ├── PageBlock.cpp │ │ ├── PageBlock.h │ │ ├── PageReservation.h │ │ ├── ParallelHelperPool.cpp │ │ ├── ParallelHelperPool.h │ │ ├── ParallelJobs.h │ │ ├── ParallelJobsGeneric.cpp │ │ ├── ParallelJobsGeneric.h │ │ ├── ParallelJobsLibdispatch.h │ │ ├── ParallelJobsOpenMP.h │ │ ├── ParallelVectorIterator.h │ │ ├── ParkingLot.cpp │ │ ├── ParkingLot.h │ │ ├── Platform.h │ │ ├── PlatformFTW.cmake │ │ ├── PlatformGTK.cmake │ │ ├── PlatformJSCOnly.cmake │ │ ├── PlatformMac.cmake │ │ ├── PlatformPlayStation.cmake │ │ ├── PlatformRegisters.cpp │ │ ├── PlatformRegisters.h │ │ ├── PlatformUltralightLinux.cmake │ │ ├── PlatformUltralightMac.cmake │ │ ├── PlatformUltralightWin.cmake │ │ ├── PlatformUserPreferredLanguagesStub.cpp │ │ ├── PlatformWPE.cmake │ │ ├── PlatformWin.cmake │ │ ├── PointerComparison.h │ │ ├── PointerPreparations.h │ │ ├── PrintStream.cpp │ │ ├── PrintStream.h │ │ ├── PriorityQueue.h │ │ ├── ProcessID.h │ │ ├── ProcessPrivilege.cpp │ │ ├── ProcessPrivilege.h │ │ ├── PtrTag.cpp │ │ ├── PtrTag.h │ │ ├── RAMSize.cpp │ │ ├── RAMSize.h │ │ ├── RandomDevice.cpp │ │ ├── RandomDevice.h │ │ ├── RandomNumber.cpp │ │ ├── RandomNumber.h │ │ ├── RandomNumberSeed.h │ │ ├── Range.h │ │ ├── RangeSet.h │ │ ├── RawPointer.h │ │ ├── ReadWriteLock.cpp │ │ ├── ReadWriteLock.h │ │ ├── RecursableLambda.h │ │ ├── RecursiveLockAdapter.h │ │ ├── RedBlackTree.h │ │ ├── Ref.h │ │ ├── RefCounted.h │ │ ├── RefCountedArray.h │ │ ├── RefCountedLeakCounter.cpp │ │ ├── RefCountedLeakCounter.h │ │ ├── RefCounter.h │ │ ├── RefPtr.h │ │ ├── RetainPtr.h │ │ ├── RunLoop.cpp │ │ ├── RunLoop.h │ │ ├── RunLoopTimer.h │ │ ├── SHA1.cpp │ │ ├── SHA1.h │ │ ├── SaturatedArithmetic.h │ │ ├── SchedulePair.h │ │ ├── Scope.h │ │ ├── ScopedLambda.h │ │ ├── Seconds.cpp │ │ ├── Seconds.h │ │ ├── SegmentedVector.h │ │ ├── SentinelLinkedList.h │ │ ├── SetForScope.h │ │ ├── SharedTask.h │ │ ├── SimpleStats.h │ │ ├── SingleRootGraph.h │ │ ├── SinglyLinkedList.h │ │ ├── SinglyLinkedListWithTail.h │ │ ├── SixCharacterHash.cpp │ │ ├── SixCharacterHash.h │ │ ├── SizeLimits.cpp │ │ ├── SmallPtrSet.h │ │ ├── SoftLinking.h │ │ ├── SpanningTree.h │ │ ├── Spectrum.h │ │ ├── StackBounds.cpp │ │ ├── StackBounds.h │ │ ├── StackPointer.cpp │ │ ├── StackPointer.h │ │ ├── StackShot.h │ │ ├── StackShotProfiler.h │ │ ├── StackStats.cpp │ │ ├── StackStats.h │ │ ├── StackTrace.cpp │ │ ├── StackTrace.h │ │ ├── StdLibExtras.h │ │ ├── StdList.h │ │ ├── StdMap.h │ │ ├── StdSet.h │ │ ├── StdUnorderedMap.h │ │ ├── StdUnorderedSet.h │ │ ├── Stopwatch.h │ │ ├── StreamBuffer.h │ │ ├── StringExtras.h │ │ ├── StringHashDumpContext.h │ │ ├── StringPrintStream.cpp │ │ ├── StringPrintStream.h │ │ ├── SynchronizedFixedQueue.h │ │ ├── SystemFree.h │ │ ├── SystemTracing.h │ │ ├── TaggedArrayStoragePtr.h │ │ ├── ThreadGroup.cpp │ │ ├── ThreadGroup.h │ │ ├── ThreadMessage.cpp │ │ ├── ThreadMessage.h │ │ ├── ThreadSafeRefCounted.h │ │ ├── ThreadSpecific.h │ │ ├── Threading.cpp │ │ ├── Threading.h │ │ ├── ThreadingPrimitives.h │ │ ├── TimeWithDynamicClockType.cpp │ │ ├── TimeWithDynamicClockType.h │ │ ├── TimingScope.cpp │ │ ├── TimingScope.h │ │ ├── TinyLRUCache.h │ │ ├── TinyPtrSet.h │ │ ├── TriState.h │ │ ├── TypeCasts.h │ │ ├── URL.cpp │ │ ├── URL.h │ │ ├── URLHash.h │ │ ├── URLHelpers.cpp │ │ ├── URLHelpers.h │ │ ├── URLParser.cpp │ │ ├── URLParser.h │ │ ├── UUID.cpp │ │ ├── UUID.h │ │ ├── UnalignedAccess.h │ │ ├── Unexpected.h │ │ ├── UniStdExtras.h │ │ ├── UnionFind.h │ │ ├── UniqueArray.h │ │ ├── UniqueRef.h │ │ ├── UnsafePointer.h │ │ ├── VMTags.h │ │ ├── ValueCheck.h │ │ ├── Variant.h │ │ ├── Vector.h │ │ ├── VectorTraits.h │ │ ├── WTFAssertions.cpp │ │ ├── WTFSemaphore.h │ │ ├── WallTime.cpp │ │ ├── WallTime.h │ │ ├── WeakHashSet.h │ │ ├── WeakObjCPtr.h │ │ ├── WeakPtr.h │ │ ├── WeakRandom.h │ │ ├── WindowsExtras.h │ │ ├── WordLock.cpp │ │ ├── WordLock.h │ │ ├── WorkQueue.cpp │ │ ├── WorkQueue.h │ │ ├── WorkerPool.cpp │ │ ├── WorkerPool.h │ │ ├── cf │ │ ├── CFURLExtras.cpp │ │ ├── CFURLExtras.h │ │ ├── FileSystemCF.cpp │ │ ├── LanguageCF.cpp │ │ ├── RunLoopCF.cpp │ │ ├── RunLoopTimerCF.cpp │ │ ├── SchedulePairCF.cpp │ │ ├── TypeCastsCF.h │ │ └── URLCF.cpp │ │ ├── cocoa │ │ ├── AutodrainedPool.cpp │ │ ├── CPUTimeCocoa.cpp │ │ ├── Entitlements.h │ │ ├── Entitlements.mm │ │ ├── FileSystemCocoa.mm │ │ ├── MachSendRight.cpp │ │ ├── MainThreadCocoa.mm │ │ ├── MemoryFootprintCocoa.cpp │ │ ├── MemoryPressureHandlerCocoa.mm │ │ ├── NSURLExtras.h │ │ ├── NSURLExtras.mm │ │ ├── SoftLinking.h │ │ ├── URLCocoa.mm │ │ └── WorkQueueCocoa.cpp │ │ ├── darwin │ │ └── WeakLinking.h │ │ ├── dtoa.cpp │ │ ├── dtoa.h │ │ ├── dtoa │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bignum-dtoa.cc │ │ ├── bignum-dtoa.h │ │ ├── bignum.cc │ │ ├── bignum.h │ │ ├── cached-powers.cc │ │ ├── cached-powers.h │ │ ├── diy-fp.cc │ │ ├── diy-fp.h │ │ ├── double-conversion.cc │ │ ├── double-conversion.h │ │ ├── fast-dtoa.cc │ │ ├── fast-dtoa.h │ │ ├── fixed-dtoa.cc │ │ ├── fixed-dtoa.h │ │ ├── ieee.h │ │ ├── strtod.cc │ │ ├── strtod.h │ │ └── utils.h │ │ ├── fuchsia │ │ └── CPUTimeFuchsia.cpp │ │ ├── generic │ │ ├── MainThreadGeneric.cpp │ │ ├── MemoryFootprintGeneric.cpp │ │ ├── MemoryPressureHandlerGeneric.cpp │ │ ├── RunLoopGeneric.cpp │ │ └── WorkQueueGeneric.cpp │ │ ├── glib │ │ ├── FileSystemGlib.cpp │ │ ├── GLibUtilities.cpp │ │ ├── GLibUtilities.h │ │ ├── GMutexLocker.h │ │ ├── GRefPtr.cpp │ │ ├── GRefPtr.h │ │ ├── GTypedefs.h │ │ ├── GUniquePtr.h │ │ ├── RunLoopGLib.cpp │ │ ├── RunLoopSourcePriority.h │ │ ├── URLGLib.cpp │ │ └── WTFGType.h │ │ ├── ios │ │ ├── WebCoreThread.cpp │ │ └── WebCoreThread.h │ │ ├── linux │ │ ├── CurrentProcessMemoryStatus.cpp │ │ ├── CurrentProcessMemoryStatus.h │ │ ├── MemoryFootprintLinux.cpp │ │ └── MemoryPressureHandlerLinux.cpp │ │ ├── lockfree │ │ ├── AtomicOps.h │ │ ├── ReaderWriterCircularBuffer.h │ │ └── ReaderWriterQueue.h │ │ ├── mac │ │ ├── AppKitCompatibilityDeclarations.h │ │ ├── DeprecatedSymbolsUsedBySafari.mm │ │ ├── FileSystemMac.mm │ │ ├── MachExceptions.defs │ │ └── SchedulePairMac.mm │ │ ├── persistence │ │ ├── PersistentCoder.h │ │ ├── PersistentCoders.cpp │ │ ├── PersistentCoders.h │ │ ├── PersistentDecoder.cpp │ │ ├── PersistentDecoder.h │ │ ├── PersistentEncoder.cpp │ │ └── PersistentEncoder.h │ │ ├── playstation │ │ ├── LanguagePlayStation.cpp │ │ └── UniStdExtrasPlayStation.cpp │ │ ├── posix │ │ ├── FileSystemPOSIX.cpp │ │ ├── OSAllocatorPOSIX.cpp │ │ └── ThreadingPOSIX.cpp │ │ ├── spi │ │ ├── cf │ │ │ ├── CFBundleSPI.h │ │ │ └── CFStringSPI.h │ │ ├── cocoa │ │ │ ├── CFXPCBridgeSPI.h │ │ │ ├── SecuritySPI.h │ │ │ └── objcSPI.h │ │ ├── darwin │ │ │ ├── DataVaultSPI.h │ │ │ ├── DispatchSPI.h │ │ │ ├── SandboxSPI.h │ │ │ ├── XPCSPI.h │ │ │ └── dyldSPI.h │ │ └── mac │ │ │ └── MetadataSPI.h │ │ ├── text │ │ ├── ASCIIFastPath.h │ │ ├── ASCIILiteral.cpp │ │ ├── ASCIILiteral.h │ │ ├── AtomString.cpp │ │ ├── AtomString.h │ │ ├── AtomStringHash.h │ │ ├── AtomStringImpl.cpp │ │ ├── AtomStringImpl.h │ │ ├── AtomStringTable.cpp │ │ ├── AtomStringTable.h │ │ ├── Base64.cpp │ │ ├── Base64.h │ │ ├── CString.cpp │ │ ├── CString.h │ │ ├── ConversionMode.h │ │ ├── ExternalStringImpl.cpp │ │ ├── ExternalStringImpl.h │ │ ├── IntegerToStringConversion.h │ │ ├── LChar.h │ │ ├── LineBreakIteratorPoolICU.h │ │ ├── LineEnding.cpp │ │ ├── LineEnding.h │ │ ├── NullTextBreakIterator.h │ │ ├── OrdinalNumber.h │ │ ├── StringBuffer.h │ │ ├── StringBuilder.cpp │ │ ├── StringBuilder.h │ │ ├── StringBuilderJSON.cpp │ │ ├── StringCommon.h │ │ ├── StringConcatenate.h │ │ ├── StringConcatenateNumbers.h │ │ ├── StringHash.h │ │ ├── StringHasher.h │ │ ├── StringImpl.cpp │ │ ├── StringImpl.h │ │ ├── StringOperators.h │ │ ├── StringToIntegerConversion.h │ │ ├── StringView.cpp │ │ ├── StringView.h │ │ ├── SymbolImpl.cpp │ │ ├── SymbolImpl.h │ │ ├── SymbolRegistry.cpp │ │ ├── SymbolRegistry.h │ │ ├── TextBreakIterator.cpp │ │ ├── TextBreakIterator.h │ │ ├── TextBreakIteratorInternalICU.h │ │ ├── TextPosition.h │ │ ├── TextStream.cpp │ │ ├── TextStream.h │ │ ├── UTF8ConversionError.h │ │ ├── UniquedStringImpl.h │ │ ├── ValueToString.h │ │ ├── WTFString.cpp │ │ ├── WTFString.h │ │ ├── cf │ │ │ ├── AtomStringImplCF.cpp │ │ │ ├── StringCF.cpp │ │ │ ├── StringImplCF.cpp │ │ │ ├── StringViewCF.cpp │ │ │ └── TextBreakIteratorCF.h │ │ ├── cocoa │ │ │ ├── StringCocoa.mm │ │ │ ├── StringImplCocoa.mm │ │ │ ├── StringViewCocoa.mm │ │ │ ├── TextBreakIteratorInternalICUCocoa.cpp │ │ │ └── TextStreamCocoa.mm │ │ ├── icu │ │ │ ├── TextBreakIteratorICU.h │ │ │ ├── UTextProvider.cpp │ │ │ ├── UTextProvider.h │ │ │ ├── UTextProviderLatin1.cpp │ │ │ ├── UTextProviderLatin1.h │ │ │ ├── UTextProviderUTF16.cpp │ │ │ └── UTextProviderUTF16.h │ │ ├── ultralight │ │ │ └── TextBreakIteratorInternalICUUltralight.cpp │ │ ├── unix │ │ │ └── TextBreakIteratorInternalICUUnix.cpp │ │ └── win │ │ │ ├── StringWin.cpp │ │ │ ├── TextBreakIteratorInternalICUWin.cpp │ │ │ └── WCharStringExtras.h │ │ ├── threads │ │ ├── BinarySemaphore.cpp │ │ ├── BinarySemaphore.h │ │ ├── Signals.cpp │ │ ├── Signals.h │ │ └── win │ │ │ └── BinarySemaphoreWin.cpp │ │ ├── unicode │ │ ├── CharacterNames.h │ │ ├── Collator.h │ │ ├── CollatorDefault.cpp │ │ ├── UTF8Conversion.cpp │ │ ├── UTF8Conversion.h │ │ └── icu │ │ │ ├── CollatorICU.cpp │ │ │ └── stubdata.cpp │ │ ├── unix │ │ ├── CPUTimeUnix.cpp │ │ ├── LanguageUnix.cpp │ │ └── UniStdExtrasUnix.cpp │ │ └── win │ │ ├── CONTRIBUTORS.pthreads-win32 │ │ ├── CPUTimeWin.cpp │ │ ├── DbgHelperWin.cpp │ │ ├── DbgHelperWin.h │ │ ├── FileSystemWin.cpp │ │ ├── GDIObject.h │ │ ├── LanguageWin.cpp │ │ ├── MainThreadWin.cpp │ │ ├── MemoryFootprintWin.cpp │ │ ├── MemoryPressureHandlerWin.cpp │ │ ├── OSAllocatorWin.cpp │ │ ├── PathWalker.cpp │ │ ├── PathWalker.h │ │ ├── RunLoopWin.cpp │ │ ├── SoftLinking.h │ │ ├── ThreadSpecificWin.cpp │ │ ├── ThreadingWin.cpp │ │ ├── WTFDLL.cpp │ │ ├── Win32Handle.h │ │ └── WorkQueueWin.cpp ├── WebCore │ ├── .gitattributes │ ├── CMakeLists.txt │ ├── Configurations │ │ ├── Base.xcconfig │ │ ├── DebugRelease.xcconfig │ │ ├── FeatureDefines.xcconfig │ │ ├── GenerateUnifiedSources.xcconfig │ │ ├── SDKVariant.xcconfig │ │ ├── Version.xcconfig │ │ ├── WebCore.unexp │ │ ├── WebCore.xcconfig │ │ ├── WebCoreTestShim.xcconfig │ │ ├── WebCoreTestSupport.xcconfig │ │ └── WebKitTargetConditionals.xcconfig │ ├── DerivedSources-input.xcfilelist │ ├── DerivedSources-output.xcfilelist │ ├── DerivedSources.make │ ├── Headers.cmake │ ├── Info.plist │ ├── LICENSE-APPLE │ ├── LICENSE-LGPL-2 │ ├── LICENSE-LGPL-2.1 │ ├── Makefile │ ├── Modules │ │ ├── airplay │ │ │ ├── WebKitPlaybackTargetAvailabilityEvent.cpp │ │ │ ├── WebKitPlaybackTargetAvailabilityEvent.h │ │ │ └── WebKitPlaybackTargetAvailabilityEvent.idl │ │ ├── applepay │ │ │ ├── ApplePayCancelEvent.cpp │ │ │ ├── ApplePayCancelEvent.h │ │ │ ├── ApplePayCancelEvent.idl │ │ │ ├── ApplePayContactField.cpp │ │ │ ├── ApplePayContactField.h │ │ │ ├── ApplePayContactField.idl │ │ │ ├── ApplePayError.cpp │ │ │ ├── ApplePayError.h │ │ │ ├── ApplePayError.idl │ │ │ ├── ApplePayErrorCode.h │ │ │ ├── ApplePayErrorCode.idl │ │ │ ├── ApplePayErrorContactField.h │ │ │ ├── ApplePayErrorContactField.idl │ │ │ ├── ApplePayLineItem.h │ │ │ ├── ApplePayLineItem.idl │ │ │ ├── ApplePayMerchantCapability.cpp │ │ │ ├── ApplePayMerchantCapability.h │ │ │ ├── ApplePayMerchantCapability.idl │ │ │ ├── ApplePayPayment.h │ │ │ ├── ApplePayPayment.idl │ │ │ ├── ApplePayPaymentAuthorizationResult.h │ │ │ ├── ApplePayPaymentAuthorizationResult.idl │ │ │ ├── ApplePayPaymentAuthorizedEvent.cpp │ │ │ ├── ApplePayPaymentAuthorizedEvent.h │ │ │ ├── ApplePayPaymentAuthorizedEvent.idl │ │ │ ├── ApplePayPaymentContact.h │ │ │ ├── ApplePayPaymentContact.idl │ │ │ ├── ApplePayPaymentMethod.h │ │ │ ├── ApplePayPaymentMethod.idl │ │ │ ├── ApplePayPaymentMethodSelectedEvent.cpp │ │ │ ├── ApplePayPaymentMethodSelectedEvent.h │ │ │ ├── ApplePayPaymentMethodSelectedEvent.idl │ │ │ ├── ApplePayPaymentMethodType.h │ │ │ ├── ApplePayPaymentMethodType.idl │ │ │ ├── ApplePayPaymentMethodUpdate.h │ │ │ ├── ApplePayPaymentMethodUpdate.idl │ │ │ ├── ApplePayPaymentPass.h │ │ │ ├── ApplePayPaymentPass.idl │ │ │ ├── ApplePayPaymentRequest.h │ │ │ ├── ApplePayPaymentRequest.idl │ │ │ ├── ApplePayRequestBase.cpp │ │ │ ├── ApplePayRequestBase.h │ │ │ ├── ApplePayRequestBase.idl │ │ │ ├── ApplePaySession.cpp │ │ │ ├── ApplePaySession.h │ │ │ ├── ApplePaySession.idl │ │ │ ├── ApplePaySessionError.h │ │ │ ├── ApplePaySessionError.idl │ │ │ ├── ApplePaySessionPaymentRequest.cpp │ │ │ ├── ApplePaySessionPaymentRequest.h │ │ │ ├── ApplePayShippingContactSelectedEvent.cpp │ │ │ ├── ApplePayShippingContactSelectedEvent.h │ │ │ ├── ApplePayShippingContactSelectedEvent.idl │ │ │ ├── ApplePayShippingContactUpdate.h │ │ │ ├── ApplePayShippingContactUpdate.idl │ │ │ ├── ApplePayShippingMethod.h │ │ │ ├── ApplePayShippingMethod.idl │ │ │ ├── ApplePayShippingMethodSelectedEvent.cpp │ │ │ ├── ApplePayShippingMethodSelectedEvent.h │ │ │ ├── ApplePayShippingMethodSelectedEvent.idl │ │ │ ├── ApplePayShippingMethodUpdate.h │ │ │ ├── ApplePayShippingMethodUpdate.idl │ │ │ ├── ApplePayValidateMerchantEvent.cpp │ │ │ ├── ApplePayValidateMerchantEvent.h │ │ │ ├── ApplePayValidateMerchantEvent.idl │ │ │ ├── Payment.h │ │ │ ├── PaymentAuthorizationStatus.h │ │ │ ├── PaymentContact.h │ │ │ ├── PaymentCoordinator.cpp │ │ │ ├── PaymentCoordinator.h │ │ │ ├── PaymentCoordinatorClient.cpp │ │ │ ├── PaymentCoordinatorClient.h │ │ │ ├── PaymentHeaders.h │ │ │ ├── PaymentMerchantSession.h │ │ │ ├── PaymentMethod.h │ │ │ ├── PaymentMethodUpdate.h │ │ │ ├── PaymentRequestValidator.h │ │ │ ├── PaymentRequestValidator.mm │ │ │ ├── PaymentSession.cpp │ │ │ ├── PaymentSession.h │ │ │ ├── PaymentSessionError.h │ │ │ ├── PaymentSummaryItems.h │ │ │ ├── cocoa │ │ │ │ ├── PaymentCocoa.mm │ │ │ │ ├── PaymentContactCocoa.mm │ │ │ │ ├── PaymentMerchantSessionCocoa.mm │ │ │ │ ├── PaymentMethodCocoa.mm │ │ │ │ ├── PaymentMethodUpdateCocoa.mm │ │ │ │ ├── PaymentSessionErrorCocoa.mm │ │ │ │ └── PaymentSummaryItemsCocoa.mm │ │ │ └── paymentrequest │ │ │ │ ├── ApplePayModifier.h │ │ │ │ ├── ApplePayModifier.idl │ │ │ │ ├── ApplePayPaymentHandler.cpp │ │ │ │ ├── ApplePayPaymentHandler.h │ │ │ │ ├── ApplePayRequest.h │ │ │ │ └── ApplePayRequest.idl │ │ ├── applicationmanifest │ │ │ ├── ApplicationManifest.h │ │ │ ├── ApplicationManifestParser.cpp │ │ │ └── ApplicationManifestParser.h │ │ ├── beacon │ │ │ ├── NavigatorBeacon.cpp │ │ │ ├── NavigatorBeacon.h │ │ │ └── NavigatorBeacon.idl │ │ ├── cache │ │ │ ├── CacheQueryOptions.h │ │ │ ├── CacheQueryOptions.idl │ │ │ ├── CacheStorageConnection.cpp │ │ │ ├── CacheStorageConnection.h │ │ │ ├── CacheStorageRecord.h │ │ │ ├── DOMCache.cpp │ │ │ ├── DOMCache.h │ │ │ ├── DOMCache.idl │ │ │ ├── DOMCacheEngine.cpp │ │ │ ├── DOMCacheEngine.h │ │ │ ├── DOMCacheStorage.cpp │ │ │ ├── DOMCacheStorage.h │ │ │ ├── DOMCacheStorage.idl │ │ │ ├── DOMWindowCaches.cpp │ │ │ ├── DOMWindowCaches.h │ │ │ ├── DOMWindowCaches.idl │ │ │ ├── WorkerCacheStorageConnection.cpp │ │ │ ├── WorkerCacheStorageConnection.h │ │ │ ├── WorkerGlobalScopeCaches.cpp │ │ │ ├── WorkerGlobalScopeCaches.h │ │ │ └── WorkerGlobalScopeCaches.idl │ │ ├── credentialmanagement │ │ │ ├── BasicCredential.cpp │ │ │ ├── BasicCredential.h │ │ │ ├── BasicCredential.idl │ │ │ ├── CredentialCreationOptions.h │ │ │ ├── CredentialCreationOptions.idl │ │ │ ├── CredentialRequestOptions.h │ │ │ ├── CredentialRequestOptions.idl │ │ │ ├── CredentialsContainer.cpp │ │ │ ├── CredentialsContainer.h │ │ │ ├── CredentialsContainer.idl │ │ │ ├── NavigatorCredentials.cpp │ │ │ ├── NavigatorCredentials.h │ │ │ └── NavigatorCredentials.idl │ │ ├── encryptedmedia │ │ │ ├── CDM.cpp │ │ │ ├── CDM.h │ │ │ ├── CDMClient.h │ │ │ ├── InitDataRegistry.cpp │ │ │ ├── InitDataRegistry.h │ │ │ ├── MediaKeyEncryptionScheme.h │ │ │ ├── MediaKeyEncryptionScheme.idl │ │ │ ├── MediaKeyMessageEvent.cpp │ │ │ ├── MediaKeyMessageEvent.h │ │ │ ├── MediaKeyMessageEvent.idl │ │ │ ├── MediaKeyMessageEventInit.h │ │ │ ├── MediaKeyMessageType.h │ │ │ ├── MediaKeySession.cpp │ │ │ ├── MediaKeySession.h │ │ │ ├── MediaKeySession.idl │ │ │ ├── MediaKeySessionType.h │ │ │ ├── MediaKeySessionType.idl │ │ │ ├── MediaKeyStatus.h │ │ │ ├── MediaKeyStatusMap.cpp │ │ │ ├── MediaKeyStatusMap.h │ │ │ ├── MediaKeyStatusMap.idl │ │ │ ├── MediaKeySystemAccess.cpp │ │ │ ├── MediaKeySystemAccess.h │ │ │ ├── MediaKeySystemAccess.idl │ │ │ ├── MediaKeySystemConfiguration.h │ │ │ ├── MediaKeySystemConfiguration.idl │ │ │ ├── MediaKeySystemMediaCapability.h │ │ │ ├── MediaKeySystemMediaCapability.idl │ │ │ ├── MediaKeys.cpp │ │ │ ├── MediaKeys.h │ │ │ ├── MediaKeys.idl │ │ │ ├── MediaKeysRequirement.h │ │ │ ├── MediaKeysRequirement.idl │ │ │ ├── MediaKeysRestrictions.h │ │ │ ├── NavigatorEME.cpp │ │ │ ├── NavigatorEME.h │ │ │ ├── NavigatorEME.idl │ │ │ └── legacy │ │ │ │ ├── LegacyCDM.cpp │ │ │ │ ├── LegacyCDM.h │ │ │ │ ├── LegacyCDMPrivate.h │ │ │ │ ├── LegacyCDMPrivateClearKey.cpp │ │ │ │ ├── LegacyCDMPrivateClearKey.h │ │ │ │ ├── LegacyCDMPrivateMediaPlayer.cpp │ │ │ │ ├── LegacyCDMPrivateMediaPlayer.h │ │ │ │ ├── LegacyCDMSessionClearKey.cpp │ │ │ │ ├── LegacyCDMSessionClearKey.h │ │ │ │ ├── WebKitMediaKeyMessageEvent.cpp │ │ │ │ ├── WebKitMediaKeyMessageEvent.h │ │ │ │ ├── WebKitMediaKeyMessageEvent.idl │ │ │ │ ├── WebKitMediaKeyNeededEvent.cpp │ │ │ │ ├── WebKitMediaKeyNeededEvent.h │ │ │ │ ├── WebKitMediaKeyNeededEvent.idl │ │ │ │ ├── WebKitMediaKeySession.cpp │ │ │ │ ├── WebKitMediaKeySession.h │ │ │ │ ├── WebKitMediaKeySession.idl │ │ │ │ ├── WebKitMediaKeys.cpp │ │ │ │ ├── WebKitMediaKeys.h │ │ │ │ └── WebKitMediaKeys.idl │ │ ├── entriesapi │ │ │ ├── DOMFileSystem.cpp │ │ │ ├── DOMFileSystem.h │ │ │ ├── DOMFileSystem.idl │ │ │ ├── ErrorCallback.cpp │ │ │ ├── ErrorCallback.h │ │ │ ├── ErrorCallback.idl │ │ │ ├── FileCallback.h │ │ │ ├── FileCallback.idl │ │ │ ├── FileSystemDirectoryEntry.cpp │ │ │ ├── FileSystemDirectoryEntry.h │ │ │ ├── FileSystemDirectoryEntry.idl │ │ │ ├── FileSystemDirectoryReader.cpp │ │ │ ├── FileSystemDirectoryReader.h │ │ │ ├── FileSystemDirectoryReader.idl │ │ │ ├── FileSystemEntriesCallback.cpp │ │ │ ├── FileSystemEntriesCallback.h │ │ │ ├── FileSystemEntriesCallback.idl │ │ │ ├── FileSystemEntry.cpp │ │ │ ├── FileSystemEntry.h │ │ │ ├── FileSystemEntry.idl │ │ │ ├── FileSystemEntryCallback.h │ │ │ ├── FileSystemEntryCallback.idl │ │ │ ├── FileSystemFileEntry.cpp │ │ │ ├── FileSystemFileEntry.h │ │ │ ├── FileSystemFileEntry.idl │ │ │ ├── HTMLInputElementEntriesAPI.cpp │ │ │ ├── HTMLInputElementEntriesAPI.h │ │ │ └── HTMLInputElementEntriesAPI.idl │ │ ├── fetch │ │ │ ├── DOMWindowFetch.cpp │ │ │ ├── DOMWindowFetch.h │ │ │ ├── DOMWindowFetch.idl │ │ │ ├── FetchBody.cpp │ │ │ ├── FetchBody.h │ │ │ ├── FetchBody.idl │ │ │ ├── FetchBodyConsumer.cpp │ │ │ ├── FetchBodyConsumer.h │ │ │ ├── FetchBodyOwner.cpp │ │ │ ├── FetchBodyOwner.h │ │ │ ├── FetchBodySource.cpp │ │ │ ├── FetchBodySource.h │ │ │ ├── FetchHeaders.cpp │ │ │ ├── FetchHeaders.h │ │ │ ├── FetchHeaders.idl │ │ │ ├── FetchIdentifier.h │ │ │ ├── FetchLoader.cpp │ │ │ ├── FetchLoader.h │ │ │ ├── FetchLoaderClient.h │ │ │ ├── FetchReferrerPolicy.h │ │ │ ├── FetchReferrerPolicy.idl │ │ │ ├── FetchRequest.cpp │ │ │ ├── FetchRequest.h │ │ │ ├── FetchRequest.idl │ │ │ ├── FetchRequestCache.h │ │ │ ├── FetchRequestCache.idl │ │ │ ├── FetchRequestCredentials.h │ │ │ ├── FetchRequestCredentials.idl │ │ │ ├── FetchRequestInit.h │ │ │ ├── FetchRequestInit.idl │ │ │ ├── FetchRequestMode.h │ │ │ ├── FetchRequestMode.idl │ │ │ ├── FetchRequestRedirect.h │ │ │ ├── FetchRequestRedirect.idl │ │ │ ├── FetchResponse.cpp │ │ │ ├── FetchResponse.h │ │ │ ├── FetchResponse.idl │ │ │ ├── WorkerGlobalScopeFetch.cpp │ │ │ ├── WorkerGlobalScopeFetch.h │ │ │ └── WorkerGlobalScopeFetch.idl │ │ ├── gamepad │ │ │ ├── Gamepad.cpp │ │ │ ├── Gamepad.h │ │ │ ├── Gamepad.idl │ │ │ ├── GamepadButton.cpp │ │ │ ├── GamepadButton.h │ │ │ ├── GamepadButton.idl │ │ │ ├── GamepadEvent.cpp │ │ │ ├── GamepadEvent.h │ │ │ ├── GamepadEvent.idl │ │ │ ├── GamepadManager.cpp │ │ │ ├── GamepadManager.h │ │ │ ├── NavigatorGamepad.cpp │ │ │ ├── NavigatorGamepad.h │ │ │ └── NavigatorGamepad.idl │ │ ├── geolocation │ │ │ ├── Coordinates.cpp │ │ │ ├── Coordinates.h │ │ │ ├── Coordinates.idl │ │ │ ├── GeoNotifier.cpp │ │ │ ├── GeoNotifier.h │ │ │ ├── Geolocation.cpp │ │ │ ├── Geolocation.h │ │ │ ├── Geolocation.idl │ │ │ ├── GeolocationClient.h │ │ │ ├── GeolocationController.cpp │ │ │ ├── GeolocationController.h │ │ │ ├── GeolocationError.h │ │ │ ├── GeolocationPosition.h │ │ │ ├── Geoposition.h │ │ │ ├── Geoposition.idl │ │ │ ├── NavigatorGeolocation.cpp │ │ │ ├── NavigatorGeolocation.h │ │ │ ├── NavigatorGeolocation.idl │ │ │ ├── PositionCallback.h │ │ │ ├── PositionCallback.idl │ │ │ ├── PositionError.h │ │ │ ├── PositionError.idl │ │ │ ├── PositionErrorCallback.h │ │ │ ├── PositionErrorCallback.idl │ │ │ ├── PositionOptions.h │ │ │ ├── PositionOptions.idl │ │ │ └── ios │ │ │ │ └── GeolocationPositionIOS.mm │ │ ├── indexeddb │ │ │ ├── DOMWindowIndexedDatabase.cpp │ │ │ ├── DOMWindowIndexedDatabase.h │ │ │ ├── DOMWindowIndexedDatabase.idl │ │ │ ├── IDBActiveDOMObject.h │ │ │ ├── IDBCursor.cpp │ │ │ ├── IDBCursor.h │ │ │ ├── IDBCursor.idl │ │ │ ├── IDBCursorDirection.h │ │ │ ├── IDBCursorDirection.idl │ │ │ ├── IDBCursorWithValue.cpp │ │ │ ├── IDBCursorWithValue.h │ │ │ ├── IDBCursorWithValue.idl │ │ │ ├── IDBDatabase.cpp │ │ │ ├── IDBDatabase.h │ │ │ ├── IDBDatabase.idl │ │ │ ├── IDBDatabaseIdentifier.cpp │ │ │ ├── IDBDatabaseIdentifier.h │ │ │ ├── IDBFactory.cpp │ │ │ ├── IDBFactory.h │ │ │ ├── IDBFactory.idl │ │ │ ├── IDBGetAllResult.cpp │ │ │ ├── IDBGetAllResult.h │ │ │ ├── IDBGetResult.cpp │ │ │ ├── IDBGetResult.h │ │ │ ├── IDBIndex.cpp │ │ │ ├── IDBIndex.h │ │ │ ├── IDBIndex.idl │ │ │ ├── IDBKey.cpp │ │ │ ├── IDBKey.h │ │ │ ├── IDBKeyData.cpp │ │ │ ├── IDBKeyData.h │ │ │ ├── IDBKeyPath.cpp │ │ │ ├── IDBKeyPath.h │ │ │ ├── IDBKeyRange.cpp │ │ │ ├── IDBKeyRange.h │ │ │ ├── IDBKeyRange.idl │ │ │ ├── IDBKeyRangeData.cpp │ │ │ ├── IDBKeyRangeData.h │ │ │ ├── IDBObjectStore.cpp │ │ │ ├── IDBObjectStore.h │ │ │ ├── IDBObjectStore.idl │ │ │ ├── IDBOpenDBRequest.cpp │ │ │ ├── IDBOpenDBRequest.h │ │ │ ├── IDBOpenDBRequest.idl │ │ │ ├── IDBRecordIdentifier.h │ │ │ ├── IDBRequest.cpp │ │ │ ├── IDBRequest.h │ │ │ ├── IDBRequest.idl │ │ │ ├── IDBRequestCompletionEvent.cpp │ │ │ ├── IDBRequestCompletionEvent.h │ │ │ ├── IDBTransaction.cpp │ │ │ ├── IDBTransaction.h │ │ │ ├── IDBTransaction.idl │ │ │ ├── IDBTransactionMode.h │ │ │ ├── IDBTransactionMode.idl │ │ │ ├── IDBValue.cpp │ │ │ ├── IDBValue.h │ │ │ ├── IDBVersionChangeEvent.cpp │ │ │ ├── IDBVersionChangeEvent.h │ │ │ ├── IDBVersionChangeEvent.idl │ │ │ ├── IndexedDB.h │ │ │ ├── WorkerGlobalScopeIndexedDatabase.cpp │ │ │ ├── WorkerGlobalScopeIndexedDatabase.h │ │ │ ├── WorkerGlobalScopeIndexedDatabase.idl │ │ │ ├── client │ │ │ │ ├── IDBConnectionProxy.cpp │ │ │ │ ├── IDBConnectionProxy.h │ │ │ │ ├── IDBConnectionToServer.cpp │ │ │ │ ├── IDBConnectionToServer.h │ │ │ │ ├── IDBConnectionToServerDelegate.h │ │ │ │ ├── TransactionOperation.cpp │ │ │ │ └── TransactionOperation.h │ │ │ ├── server │ │ │ │ ├── IDBBackingStore.h │ │ │ │ ├── IDBConnectionToClient.cpp │ │ │ │ ├── IDBConnectionToClient.h │ │ │ │ ├── IDBConnectionToClientDelegate.h │ │ │ │ ├── IDBSerialization.cpp │ │ │ │ ├── IDBSerialization.h │ │ │ │ ├── IDBServer.cpp │ │ │ │ ├── IDBServer.h │ │ │ │ ├── IndexValueEntry.cpp │ │ │ │ ├── IndexValueEntry.h │ │ │ │ ├── IndexValueStore.cpp │ │ │ │ ├── IndexValueStore.h │ │ │ │ ├── MemoryBackingStoreTransaction.cpp │ │ │ │ ├── MemoryBackingStoreTransaction.h │ │ │ │ ├── MemoryCursor.cpp │ │ │ │ ├── MemoryCursor.h │ │ │ │ ├── MemoryIDBBackingStore.cpp │ │ │ │ ├── MemoryIDBBackingStore.h │ │ │ │ ├── MemoryIndex.cpp │ │ │ │ ├── MemoryIndex.h │ │ │ │ ├── MemoryIndexCursor.cpp │ │ │ │ ├── MemoryIndexCursor.h │ │ │ │ ├── MemoryObjectStore.cpp │ │ │ │ ├── MemoryObjectStore.h │ │ │ │ ├── MemoryObjectStoreCursor.cpp │ │ │ │ ├── MemoryObjectStoreCursor.h │ │ │ │ ├── SQLiteIDBBackingStore.cpp │ │ │ │ ├── SQLiteIDBBackingStore.h │ │ │ │ ├── SQLiteIDBCursor.cpp │ │ │ │ ├── SQLiteIDBCursor.h │ │ │ │ ├── SQLiteIDBTransaction.cpp │ │ │ │ ├── SQLiteIDBTransaction.h │ │ │ │ ├── ServerOpenDBRequest.cpp │ │ │ │ ├── ServerOpenDBRequest.h │ │ │ │ ├── UniqueIDBDatabase.cpp │ │ │ │ ├── UniqueIDBDatabase.h │ │ │ │ ├── UniqueIDBDatabaseConnection.cpp │ │ │ │ ├── UniqueIDBDatabaseConnection.h │ │ │ │ ├── UniqueIDBDatabaseTransaction.cpp │ │ │ │ └── UniqueIDBDatabaseTransaction.h │ │ │ └── shared │ │ │ │ ├── IDBCursorInfo.cpp │ │ │ │ ├── IDBCursorInfo.h │ │ │ │ ├── IDBCursorRecord.h │ │ │ │ ├── IDBDatabaseInfo.cpp │ │ │ │ ├── IDBDatabaseInfo.h │ │ │ │ ├── IDBError.cpp │ │ │ │ ├── IDBError.h │ │ │ │ ├── IDBGetAllRecordsData.cpp │ │ │ │ ├── IDBGetAllRecordsData.h │ │ │ │ ├── IDBGetRecordData.cpp │ │ │ │ ├── IDBGetRecordData.h │ │ │ │ ├── IDBIndexInfo.cpp │ │ │ │ ├── IDBIndexInfo.h │ │ │ │ ├── IDBIterateCursorData.cpp │ │ │ │ ├── IDBIterateCursorData.h │ │ │ │ ├── IDBObjectStoreInfo.cpp │ │ │ │ ├── IDBObjectStoreInfo.h │ │ │ │ ├── IDBRequestData.cpp │ │ │ │ ├── IDBRequestData.h │ │ │ │ ├── IDBResourceIdentifier.cpp │ │ │ │ ├── IDBResourceIdentifier.h │ │ │ │ ├── IDBResultData.cpp │ │ │ │ ├── IDBResultData.h │ │ │ │ ├── IDBTransactionInfo.cpp │ │ │ │ ├── IDBTransactionInfo.h │ │ │ │ ├── InProcessIDBServer.cpp │ │ │ │ ├── InProcessIDBServer.h │ │ │ │ ├── IndexKey.cpp │ │ │ │ └── IndexKey.h │ │ ├── mediacapabilities │ │ │ ├── AudioConfiguration.idl │ │ │ ├── MediaCapabilities.cpp │ │ │ ├── MediaCapabilities.h │ │ │ ├── MediaCapabilities.idl │ │ │ ├── MediaCapabilitiesDecodingInfo.idl │ │ │ ├── MediaCapabilitiesEncodingInfo.idl │ │ │ ├── MediaCapabilitiesInfo.idl │ │ │ ├── MediaConfiguration.idl │ │ │ ├── MediaDecodingConfiguration.idl │ │ │ ├── MediaDecodingType.idl │ │ │ ├── MediaEncodingConfiguration.idl │ │ │ ├── MediaEncodingType.idl │ │ │ ├── NavigatorMediaCapabilities.cpp │ │ │ ├── NavigatorMediaCapabilities.h │ │ │ ├── NavigatorMediaCapabilities.idl │ │ │ ├── ScreenColorGamut.h │ │ │ ├── ScreenColorGamut.idl │ │ │ ├── ScreenLuminance.h │ │ │ ├── ScreenLuminance.idl │ │ │ └── VideoConfiguration.idl │ │ ├── mediacontrols │ │ │ ├── MediaControlsHost.cpp │ │ │ ├── MediaControlsHost.h │ │ │ ├── MediaControlsHost.idl │ │ │ ├── assets-apple-iOS.svg │ │ │ ├── mediaControls.css │ │ │ ├── mediaControls.js │ │ │ ├── mediaControlsApple.css │ │ │ ├── mediaControlsApple.js │ │ │ ├── mediaControlsBase.css │ │ │ ├── mediaControlsBase.js │ │ │ ├── mediaControlsGtk.js │ │ │ ├── mediaControlsLocalizedStrings.js │ │ │ ├── mediaControlsiOS.css │ │ │ └── mediaControlsiOS.js │ │ ├── mediarecorder │ │ │ ├── BlobEvent.cpp │ │ │ ├── BlobEvent.h │ │ │ ├── BlobEvent.idl │ │ │ ├── MediaRecorder.cpp │ │ │ ├── MediaRecorder.h │ │ │ ├── MediaRecorder.idl │ │ │ ├── MediaRecorderErrorEvent.cpp │ │ │ ├── MediaRecorderErrorEvent.h │ │ │ └── MediaRecorderErrorEvent.idl │ │ ├── mediasession │ │ │ ├── HTMLMediaElementMediaSession.cpp │ │ │ ├── HTMLMediaElementMediaSession.h │ │ │ ├── HTMLMediaElementMediaSession.idl │ │ │ ├── MediaRemoteControls.cpp │ │ │ ├── MediaRemoteControls.h │ │ │ ├── MediaRemoteControls.idl │ │ │ ├── MediaSession.cpp │ │ │ ├── MediaSession.h │ │ │ ├── MediaSession.idl │ │ │ ├── MediaSessionEvents.h │ │ │ ├── MediaSessionManager.cpp │ │ │ ├── MediaSessionManager.h │ │ │ ├── MediaSessionMetadata.h │ │ │ ├── WebMediaSessionManager.cpp │ │ │ ├── WebMediaSessionManager.h │ │ │ └── WebMediaSessionManagerClient.h │ │ ├── mediasource │ │ │ ├── AudioTrackMediaSource.h │ │ │ ├── AudioTrackMediaSource.idl │ │ │ ├── DOMURLMediaSource.cpp │ │ │ ├── DOMURLMediaSource.h │ │ │ ├── DOMURLMediaSource.idl │ │ │ ├── MediaSource.cpp │ │ │ ├── MediaSource.h │ │ │ ├── MediaSource.idl │ │ │ ├── MediaSourceRegistry.cpp │ │ │ ├── MediaSourceRegistry.h │ │ │ ├── SampleMap.cpp │ │ │ ├── SampleMap.h │ │ │ ├── SourceBuffer.cpp │ │ │ ├── SourceBuffer.h │ │ │ ├── SourceBuffer.idl │ │ │ ├── SourceBufferList.cpp │ │ │ ├── SourceBufferList.h │ │ │ ├── SourceBufferList.idl │ │ │ ├── TextTrackMediaSource.h │ │ │ ├── TextTrackMediaSource.idl │ │ │ ├── VideoPlaybackQuality.cpp │ │ │ ├── VideoPlaybackQuality.h │ │ │ ├── VideoPlaybackQuality.idl │ │ │ ├── VideoTrackMediaSource.h │ │ │ └── VideoTrackMediaSource.idl │ │ ├── mediastream │ │ │ ├── CanvasCaptureMediaStreamTrack.cpp │ │ │ ├── CanvasCaptureMediaStreamTrack.h │ │ │ ├── CanvasCaptureMediaStreamTrack.idl │ │ │ ├── DoubleRange.h │ │ │ ├── DoubleRange.idl │ │ │ ├── LongRange.h │ │ │ ├── LongRange.idl │ │ │ ├── MediaDeviceInfo.cpp │ │ │ ├── MediaDeviceInfo.h │ │ │ ├── MediaDeviceInfo.idl │ │ │ ├── MediaDevices.cpp │ │ │ ├── MediaDevices.h │ │ │ ├── MediaDevices.idl │ │ │ ├── MediaDevicesEnumerationRequest.cpp │ │ │ ├── MediaDevicesEnumerationRequest.h │ │ │ ├── MediaDevicesRequest.cpp │ │ │ ├── MediaDevicesRequest.h │ │ │ ├── MediaStream.cpp │ │ │ ├── MediaStream.h │ │ │ ├── MediaStream.idl │ │ │ ├── MediaStreamRegistry.cpp │ │ │ ├── MediaStreamRegistry.h │ │ │ ├── MediaStreamTrack.cpp │ │ │ ├── MediaStreamTrack.h │ │ │ ├── MediaStreamTrack.idl │ │ │ ├── MediaStreamTrackEvent.cpp │ │ │ ├── MediaStreamTrackEvent.h │ │ │ ├── MediaStreamTrackEvent.idl │ │ │ ├── MediaTrackConstraints.cpp │ │ │ ├── MediaTrackConstraints.h │ │ │ ├── MediaTrackConstraints.idl │ │ │ ├── MediaTrackSupportedConstraints.h │ │ │ ├── MediaTrackSupportedConstraints.idl │ │ │ ├── NavigatorMediaDevices.cpp │ │ │ ├── NavigatorMediaDevices.h │ │ │ ├── NavigatorMediaDevices.idl │ │ │ ├── OverconstrainedError.h │ │ │ ├── OverconstrainedError.idl │ │ │ ├── OverconstrainedErrorEvent.h │ │ │ ├── OverconstrainedErrorEvent.idl │ │ │ ├── PeerConnectionBackend.cpp │ │ │ ├── PeerConnectionBackend.h │ │ │ ├── RTCAnswerOptions.h │ │ │ ├── RTCAnswerOptions.idl │ │ │ ├── RTCCertificate.cpp │ │ │ ├── RTCCertificate.h │ │ │ ├── RTCCertificate.idl │ │ │ ├── RTCConfiguration.h │ │ │ ├── RTCConfiguration.idl │ │ │ ├── RTCController.cpp │ │ │ ├── RTCController.h │ │ │ ├── RTCDTMFSender.cpp │ │ │ ├── RTCDTMFSender.h │ │ │ ├── RTCDTMFSender.idl │ │ │ ├── RTCDTMFToneChangeEvent.cpp │ │ │ ├── RTCDTMFToneChangeEvent.h │ │ │ ├── RTCDTMFToneChangeEvent.idl │ │ │ ├── RTCDataChannel.cpp │ │ │ ├── RTCDataChannel.h │ │ │ ├── RTCDataChannel.idl │ │ │ ├── RTCDataChannelEvent.cpp │ │ │ ├── RTCDataChannelEvent.h │ │ │ ├── RTCDataChannelEvent.idl │ │ │ ├── RTCDegradationPreference.h │ │ │ ├── RTCDegradationPreference.idl │ │ │ ├── RTCDtxStatus.h │ │ │ ├── RTCDtxStatus.idl │ │ │ ├── RTCIceCandidate.cpp │ │ │ ├── RTCIceCandidate.h │ │ │ ├── RTCIceCandidate.idl │ │ │ ├── RTCIceConnectionState.idl │ │ │ ├── RTCIceGatheringState.idl │ │ │ ├── RTCIceServer.h │ │ │ ├── RTCIceServer.idl │ │ │ ├── RTCIceTransport.cpp │ │ │ ├── RTCIceTransport.h │ │ │ ├── RTCIceTransport.idl │ │ │ ├── RTCIceTransportState.idl │ │ │ ├── RTCOfferAnswerOptions.h │ │ │ ├── RTCOfferAnswerOptions.idl │ │ │ ├── RTCOfferOptions.h │ │ │ ├── RTCOfferOptions.idl │ │ │ ├── RTCPeerConnection.cpp │ │ │ ├── RTCPeerConnection.h │ │ │ ├── RTCPeerConnection.idl │ │ │ ├── RTCPeerConnection.js │ │ │ ├── RTCPeerConnectionIceEvent.cpp │ │ │ ├── RTCPeerConnectionIceEvent.h │ │ │ ├── RTCPeerConnectionIceEvent.idl │ │ │ ├── RTCPeerConnectionInternals.js │ │ │ ├── RTCPeerConnectionState.idl │ │ │ ├── RTCPriorityType.h │ │ │ ├── RTCPriorityType.idl │ │ │ ├── RTCRtpCapabilities.idl │ │ │ ├── RTCRtpCodecParameters.h │ │ │ ├── RTCRtpCodecParameters.idl │ │ │ ├── RTCRtpCodingParameters.h │ │ │ ├── RTCRtpCodingParameters.idl │ │ │ ├── RTCRtpContributingSource.h │ │ │ ├── RTCRtpContributingSource.idl │ │ │ ├── RTCRtpDecodingParameters.h │ │ │ ├── RTCRtpDecodingParameters.idl │ │ │ ├── RTCRtpEncodingParameters.h │ │ │ ├── RTCRtpEncodingParameters.idl │ │ │ ├── RTCRtpFecParameters.h │ │ │ ├── RTCRtpFecParameters.idl │ │ │ ├── RTCRtpHeaderExtensionParameters.h │ │ │ ├── RTCRtpHeaderExtensionParameters.idl │ │ │ ├── RTCRtpParameters.h │ │ │ ├── RTCRtpParameters.idl │ │ │ ├── RTCRtpReceiver.cpp │ │ │ ├── RTCRtpReceiver.h │ │ │ ├── RTCRtpReceiver.idl │ │ │ ├── RTCRtpReceiverBackend.h │ │ │ ├── RTCRtpRtxParameters.h │ │ │ ├── RTCRtpRtxParameters.idl │ │ │ ├── RTCRtpSendParameters.h │ │ │ ├── RTCRtpSendParameters.idl │ │ │ ├── RTCRtpSender.cpp │ │ │ ├── RTCRtpSender.h │ │ │ ├── RTCRtpSender.idl │ │ │ ├── RTCRtpSenderBackend.h │ │ │ ├── RTCRtpSynchronizationSource.h │ │ │ ├── RTCRtpSynchronizationSource.idl │ │ │ ├── RTCRtpTransceiver.cpp │ │ │ ├── RTCRtpTransceiver.h │ │ │ ├── RTCRtpTransceiver.idl │ │ │ ├── RTCRtpTransceiverBackend.h │ │ │ ├── RTCRtpTransceiverDirection.idl │ │ │ ├── RTCSessionDescription.cpp │ │ │ ├── RTCSessionDescription.h │ │ │ ├── RTCSessionDescription.idl │ │ │ ├── RTCSignalingState.idl │ │ │ ├── RTCStatsReport.h │ │ │ ├── RTCStatsReport.idl │ │ │ ├── RTCTrackEvent.cpp │ │ │ ├── RTCTrackEvent.h │ │ │ ├── RTCTrackEvent.idl │ │ │ ├── UserMediaClient.h │ │ │ ├── UserMediaController.cpp │ │ │ ├── UserMediaController.h │ │ │ ├── UserMediaRequest.cpp │ │ │ ├── UserMediaRequest.h │ │ │ ├── libwebrtc │ │ │ │ ├── LibWebRTCCertificateGenerator.cpp │ │ │ │ ├── LibWebRTCCertificateGenerator.h │ │ │ │ ├── LibWebRTCDataChannelHandler.cpp │ │ │ │ ├── LibWebRTCDataChannelHandler.h │ │ │ │ ├── LibWebRTCMediaEndpoint.cpp │ │ │ │ ├── LibWebRTCMediaEndpoint.h │ │ │ │ ├── LibWebRTCObservers.h │ │ │ │ ├── LibWebRTCPeerConnectionBackend.cpp │ │ │ │ ├── LibWebRTCPeerConnectionBackend.h │ │ │ │ ├── LibWebRTCRtpReceiverBackend.cpp │ │ │ │ ├── LibWebRTCRtpReceiverBackend.h │ │ │ │ ├── LibWebRTCRtpSenderBackend.cpp │ │ │ │ ├── LibWebRTCRtpSenderBackend.h │ │ │ │ ├── LibWebRTCRtpTransceiverBackend.cpp │ │ │ │ ├── LibWebRTCRtpTransceiverBackend.h │ │ │ │ ├── LibWebRTCStatsCollector.cpp │ │ │ │ ├── LibWebRTCStatsCollector.h │ │ │ │ ├── LibWebRTCUtils.cpp │ │ │ │ └── LibWebRTCUtils.h │ │ │ └── sdp.js │ │ ├── modern-media-controls │ │ │ ├── controls │ │ │ │ ├── activity-indicator.css │ │ │ │ ├── airplay-button.css │ │ │ │ ├── airplay-button.js │ │ │ │ ├── airplay-placard.js │ │ │ │ ├── auto-hide-controller.js │ │ │ │ ├── background-click-delegate-notifier.js │ │ │ │ ├── background-tint.css │ │ │ │ ├── background-tint.js │ │ │ │ ├── button.css │ │ │ │ ├── button.js │ │ │ │ ├── buttons-container.css │ │ │ │ ├── buttons-container.js │ │ │ │ ├── compact-activity-indicator.css │ │ │ │ ├── compact-activity-indicator.js │ │ │ │ ├── compact-media-controls.css │ │ │ │ ├── compact-media-controls.js │ │ │ │ ├── controls-bar.css │ │ │ │ ├── controls-bar.js │ │ │ │ ├── forward-button.js │ │ │ │ ├── fullscreen-button.js │ │ │ │ ├── icon-service.js │ │ │ │ ├── inline-media-controls.css │ │ │ │ ├── inline-media-controls.js │ │ │ │ ├── invalid-placard.js │ │ │ │ ├── ios-inline-media-controls.js │ │ │ │ ├── layout-item.js │ │ │ │ ├── layout-node.js │ │ │ │ ├── macos-fullscreen-media-controls.css │ │ │ │ ├── macos-fullscreen-media-controls.js │ │ │ │ ├── macos-inline-media-controls.css │ │ │ │ ├── macos-inline-media-controls.js │ │ │ │ ├── media-controls.css │ │ │ │ ├── media-controls.js │ │ │ │ ├── media-document.css │ │ │ │ ├── mute-button.js │ │ │ │ ├── pip-button.js │ │ │ │ ├── pip-placard.js │ │ │ │ ├── placard.css │ │ │ │ ├── placard.js │ │ │ │ ├── play-pause-button.js │ │ │ │ ├── rewind-button.js │ │ │ │ ├── scheduler.js │ │ │ │ ├── seek-button.js │ │ │ │ ├── skip-back-button.js │ │ │ │ ├── skip-forward-button.js │ │ │ │ ├── slider.css │ │ │ │ ├── slider.js │ │ │ │ ├── status-label.css │ │ │ │ ├── status-label.js │ │ │ │ ├── text-tracks.css │ │ │ │ ├── time-control.js │ │ │ │ ├── time-label.css │ │ │ │ ├── time-label.js │ │ │ │ ├── tracks-button.js │ │ │ │ ├── tracks-panel.css │ │ │ │ ├── tracks-panel.js │ │ │ │ ├── volume-down-button.js │ │ │ │ └── volume-up-button.js │ │ │ ├── gesture-recognizers │ │ │ │ ├── gesture-recognizer.js │ │ │ │ ├── pinch.js │ │ │ │ └── tap.js │ │ │ ├── images │ │ │ │ ├── iOS │ │ │ │ │ ├── Airplay.svg │ │ │ │ │ ├── EnterFullscreen.svg │ │ │ │ │ ├── MediaSelector.svg │ │ │ │ │ ├── MiniPipIn.svg │ │ │ │ │ ├── Mute-RTL.svg │ │ │ │ │ ├── Mute.svg │ │ │ │ │ ├── Pause.svg │ │ │ │ │ ├── PipIn.svg │ │ │ │ │ ├── Play.svg │ │ │ │ │ ├── SkipBack15.svg │ │ │ │ │ ├── SkipForward15.svg │ │ │ │ │ ├── VolumeHi-RTL.svg │ │ │ │ │ ├── VolumeHi.svg │ │ │ │ │ ├── airplay-placard@1x.png │ │ │ │ │ ├── airplay-placard@2x.png │ │ │ │ │ ├── airplay-placard@3x.png │ │ │ │ │ ├── invalid-placard@1x.png │ │ │ │ │ ├── invalid-placard@2x.png │ │ │ │ │ ├── invalid-placard@3x.png │ │ │ │ │ ├── pip-placard@1x.png │ │ │ │ │ ├── pip-placard@2x.png │ │ │ │ │ └── pip-placard@3x.png │ │ │ │ └── macOS │ │ │ │ │ ├── Airplay-fullscreen.svg │ │ │ │ │ ├── Airplay.svg │ │ │ │ │ ├── EnterFullscreen.svg │ │ │ │ │ ├── ExitFullscreen.svg │ │ │ │ │ ├── Forward.svg │ │ │ │ │ ├── MediaSelector-fullscreen.svg │ │ │ │ │ ├── MediaSelector.svg │ │ │ │ │ ├── Mute-RTL.svg │ │ │ │ │ ├── Mute.svg │ │ │ │ │ ├── Pause.svg │ │ │ │ │ ├── PipIn-fullscreen.svg │ │ │ │ │ ├── PipIn.svg │ │ │ │ │ ├── Play.svg │ │ │ │ │ ├── Rewind.svg │ │ │ │ │ ├── SkipBack15.svg │ │ │ │ │ ├── SkipForward15.svg │ │ │ │ │ ├── VolumeHi-RTL.svg │ │ │ │ │ ├── VolumeHi.svg │ │ │ │ │ ├── VolumeLo.svg │ │ │ │ │ ├── airplay-placard@1x.png │ │ │ │ │ ├── airplay-placard@2x.png │ │ │ │ │ ├── invalid-placard@1x.png │ │ │ │ │ ├── invalid-placard@2x.png │ │ │ │ │ ├── pip-placard@1x.png │ │ │ │ │ └── pip-placard@2x.png │ │ │ ├── js-files │ │ │ ├── main.js │ │ │ └── media │ │ │ │ ├── airplay-support.js │ │ │ │ ├── audio-support.js │ │ │ │ ├── compact-media-controls-support.js │ │ │ │ ├── controls-visibility-support.js │ │ │ │ ├── fullscreen-support.js │ │ │ │ ├── media-controller-support.js │ │ │ │ ├── media-controller.js │ │ │ │ ├── media-document-controller.js │ │ │ │ ├── mute-support.js │ │ │ │ ├── pip-support.js │ │ │ │ ├── placard-support.js │ │ │ │ ├── playback-support.js │ │ │ │ ├── scrubbing-support.js │ │ │ │ ├── seek-backward-support.js │ │ │ │ ├── seek-forward-support.js │ │ │ │ ├── seek-support.js │ │ │ │ ├── skip-back-support.js │ │ │ │ ├── skip-forward-support.js │ │ │ │ ├── start-support.js │ │ │ │ ├── status-support.js │ │ │ │ ├── time-control-support.js │ │ │ │ ├── tracks-support.js │ │ │ │ ├── volume-down-support.js │ │ │ │ ├── volume-support.js │ │ │ │ └── volume-up-support.js │ │ ├── notifications │ │ │ ├── Notification.cpp │ │ │ ├── Notification.h │ │ │ ├── Notification.idl │ │ │ ├── NotificationClient.h │ │ │ ├── NotificationController.cpp │ │ │ ├── NotificationController.h │ │ │ ├── NotificationDirection.h │ │ │ ├── NotificationPermission.h │ │ │ ├── NotificationPermission.idl │ │ │ ├── NotificationPermissionCallback.h │ │ │ └── NotificationPermissionCallback.idl │ │ ├── paymentrequest │ │ │ ├── AddressErrors.h │ │ │ ├── AddressErrors.idl │ │ │ ├── MerchantValidationEvent.cpp │ │ │ ├── MerchantValidationEvent.h │ │ │ ├── MerchantValidationEvent.idl │ │ │ ├── PayerErrorFields.h │ │ │ ├── PayerErrorFields.idl │ │ │ ├── PaymentAddress.cpp │ │ │ ├── PaymentAddress.h │ │ │ ├── PaymentAddress.idl │ │ │ ├── PaymentComplete.h │ │ │ ├── PaymentComplete.idl │ │ │ ├── PaymentCurrencyAmount.h │ │ │ ├── PaymentCurrencyAmount.idl │ │ │ ├── PaymentDetailsBase.h │ │ │ ├── PaymentDetailsBase.idl │ │ │ ├── PaymentDetailsInit.h │ │ │ ├── PaymentDetailsInit.idl │ │ │ ├── PaymentDetailsModifier.h │ │ │ ├── PaymentDetailsModifier.idl │ │ │ ├── PaymentDetailsUpdate.h │ │ │ ├── PaymentDetailsUpdate.idl │ │ │ ├── PaymentHandler.cpp │ │ │ ├── PaymentHandler.h │ │ │ ├── PaymentItem.h │ │ │ ├── PaymentItem.idl │ │ │ ├── PaymentMethodChangeEvent.cpp │ │ │ ├── PaymentMethodChangeEvent.h │ │ │ ├── PaymentMethodChangeEvent.idl │ │ │ ├── PaymentMethodData.h │ │ │ ├── PaymentMethodData.idl │ │ │ ├── PaymentOptions.h │ │ │ ├── PaymentOptions.idl │ │ │ ├── PaymentRequest.cpp │ │ │ ├── PaymentRequest.h │ │ │ ├── PaymentRequest.idl │ │ │ ├── PaymentRequestUpdateEvent.cpp │ │ │ ├── PaymentRequestUpdateEvent.h │ │ │ ├── PaymentRequestUpdateEvent.idl │ │ │ ├── PaymentRequestUpdateEventInit.h │ │ │ ├── PaymentRequestUpdateEventInit.idl │ │ │ ├── PaymentResponse.cpp │ │ │ ├── PaymentResponse.h │ │ │ ├── PaymentResponse.idl │ │ │ ├── PaymentSessionBase.h │ │ │ ├── PaymentShippingOption.h │ │ │ ├── PaymentShippingOption.idl │ │ │ ├── PaymentShippingType.h │ │ │ ├── PaymentShippingType.idl │ │ │ ├── PaymentValidationErrors.h │ │ │ └── PaymentValidationErrors.idl │ │ ├── plugins │ │ │ ├── PluginReplacement.h │ │ │ ├── QuickTimePluginReplacement.css │ │ │ ├── QuickTimePluginReplacement.h │ │ │ ├── QuickTimePluginReplacement.idl │ │ │ ├── QuickTimePluginReplacement.js │ │ │ ├── QuickTimePluginReplacement.mm │ │ │ ├── YouTubePluginReplacement.cpp │ │ │ └── YouTubePluginReplacement.h │ │ ├── quota │ │ │ ├── DOMWindowQuota.cpp │ │ │ ├── DOMWindowQuota.h │ │ │ ├── DOMWindowQuota.idl │ │ │ ├── NavigatorStorageQuota.cpp │ │ │ ├── NavigatorStorageQuota.h │ │ │ ├── NavigatorStorageQuota.idl │ │ │ ├── StorageErrorCallback.cpp │ │ │ ├── StorageErrorCallback.h │ │ │ ├── StorageErrorCallback.idl │ │ │ ├── StorageInfo.cpp │ │ │ ├── StorageInfo.h │ │ │ ├── StorageInfo.idl │ │ │ ├── StorageQuota.cpp │ │ │ ├── StorageQuota.h │ │ │ ├── StorageQuota.idl │ │ │ ├── StorageQuotaCallback.h │ │ │ ├── StorageQuotaCallback.idl │ │ │ ├── StorageUsageCallback.h │ │ │ ├── StorageUsageCallback.idl │ │ │ ├── WorkerNavigatorStorageQuota.cpp │ │ │ ├── WorkerNavigatorStorageQuota.h │ │ │ └── WorkerNavigatorStorageQuota.idl │ │ ├── speech │ │ │ ├── DOMWindowSpeechSynthesis.cpp │ │ │ ├── DOMWindowSpeechSynthesis.h │ │ │ ├── DOMWindowSpeechSynthesis.idl │ │ │ ├── SpeechSynthesis.cpp │ │ │ ├── SpeechSynthesis.h │ │ │ ├── SpeechSynthesis.idl │ │ │ ├── SpeechSynthesisEvent.cpp │ │ │ ├── SpeechSynthesisEvent.h │ │ │ ├── SpeechSynthesisEvent.idl │ │ │ ├── SpeechSynthesisUtterance.cpp │ │ │ ├── SpeechSynthesisUtterance.h │ │ │ ├── SpeechSynthesisUtterance.idl │ │ │ ├── SpeechSynthesisVoice.cpp │ │ │ ├── SpeechSynthesisVoice.h │ │ │ └── SpeechSynthesisVoice.idl │ │ ├── streams │ │ │ ├── ByteLengthQueuingStrategy.idl │ │ │ ├── ByteLengthQueuingStrategy.js │ │ │ ├── CountQueuingStrategy.idl │ │ │ ├── CountQueuingStrategy.js │ │ │ ├── ReadableByteStreamController.idl │ │ │ ├── ReadableByteStreamController.js │ │ │ ├── ReadableByteStreamInternals.js │ │ │ ├── ReadableStream.idl │ │ │ ├── ReadableStream.js │ │ │ ├── ReadableStreamBYOBReader.idl │ │ │ ├── ReadableStreamBYOBReader.js │ │ │ ├── ReadableStreamBYOBRequest.idl │ │ │ ├── ReadableStreamBYOBRequest.js │ │ │ ├── ReadableStreamChunk.h │ │ │ ├── ReadableStreamDefaultController.idl │ │ │ ├── ReadableStreamDefaultController.js │ │ │ ├── ReadableStreamDefaultReader.idl │ │ │ ├── ReadableStreamDefaultReader.js │ │ │ ├── ReadableStreamInternals.js │ │ │ ├── ReadableStreamSink.cpp │ │ │ ├── ReadableStreamSink.h │ │ │ ├── ReadableStreamSink.idl │ │ │ ├── ReadableStreamSource.h │ │ │ ├── ReadableStreamSource.idl │ │ │ ├── StreamInternals.js │ │ │ ├── WritableStream.idl │ │ │ ├── WritableStream.js │ │ │ └── WritableStreamInternals.js │ │ ├── webaudio │ │ │ ├── AnalyserNode.cpp │ │ │ ├── AnalyserNode.h │ │ │ ├── AnalyserNode.idl │ │ │ ├── AsyncAudioDecoder.cpp │ │ │ ├── AsyncAudioDecoder.h │ │ │ ├── AudioBasicInspectorNode.cpp │ │ │ ├── AudioBasicInspectorNode.h │ │ │ ├── AudioBasicProcessorNode.cpp │ │ │ ├── AudioBasicProcessorNode.h │ │ │ ├── AudioBuffer.cpp │ │ │ ├── AudioBuffer.h │ │ │ ├── AudioBuffer.idl │ │ │ ├── AudioBufferCallback.h │ │ │ ├── AudioBufferCallback.idl │ │ │ ├── AudioBufferSourceNode.cpp │ │ │ ├── AudioBufferSourceNode.h │ │ │ ├── AudioBufferSourceNode.idl │ │ │ ├── AudioContext.cpp │ │ │ ├── AudioContext.h │ │ │ ├── AudioContext.idl │ │ │ ├── AudioDestinationNode.cpp │ │ │ ├── AudioDestinationNode.h │ │ │ ├── AudioDestinationNode.idl │ │ │ ├── AudioListener.cpp │ │ │ ├── AudioListener.h │ │ │ ├── AudioListener.idl │ │ │ ├── AudioNode.cpp │ │ │ ├── AudioNode.h │ │ │ ├── AudioNode.idl │ │ │ ├── AudioNodeInput.cpp │ │ │ ├── AudioNodeInput.h │ │ │ ├── AudioNodeOutput.cpp │ │ │ ├── AudioNodeOutput.h │ │ │ ├── AudioParam.cpp │ │ │ ├── AudioParam.h │ │ │ ├── AudioParam.idl │ │ │ ├── AudioParamTimeline.cpp │ │ │ ├── AudioParamTimeline.h │ │ │ ├── AudioProcessingEvent.cpp │ │ │ ├── AudioProcessingEvent.h │ │ │ ├── AudioProcessingEvent.idl │ │ │ ├── AudioScheduledSourceNode.cpp │ │ │ ├── AudioScheduledSourceNode.h │ │ │ ├── AudioSummingJunction.cpp │ │ │ ├── AudioSummingJunction.h │ │ │ ├── BiquadDSPKernel.cpp │ │ │ ├── BiquadDSPKernel.h │ │ │ ├── BiquadFilterNode.cpp │ │ │ ├── BiquadFilterNode.h │ │ │ ├── BiquadFilterNode.idl │ │ │ ├── BiquadProcessor.cpp │ │ │ ├── BiquadProcessor.h │ │ │ ├── ChannelMergerNode.cpp │ │ │ ├── ChannelMergerNode.h │ │ │ ├── ChannelMergerNode.idl │ │ │ ├── ChannelSplitterNode.cpp │ │ │ ├── ChannelSplitterNode.h │ │ │ ├── ChannelSplitterNode.idl │ │ │ ├── ConvolverNode.cpp │ │ │ ├── ConvolverNode.h │ │ │ ├── ConvolverNode.idl │ │ │ ├── DefaultAudioDestinationNode.cpp │ │ │ ├── DefaultAudioDestinationNode.h │ │ │ ├── DelayDSPKernel.cpp │ │ │ ├── DelayDSPKernel.h │ │ │ ├── DelayNode.cpp │ │ │ ├── DelayNode.h │ │ │ ├── DelayNode.idl │ │ │ ├── DelayProcessor.cpp │ │ │ ├── DelayProcessor.h │ │ │ ├── DynamicsCompressorNode.cpp │ │ │ ├── DynamicsCompressorNode.h │ │ │ ├── DynamicsCompressorNode.idl │ │ │ ├── GainNode.cpp │ │ │ ├── GainNode.h │ │ │ ├── GainNode.idl │ │ │ ├── MediaElementAudioSourceNode.cpp │ │ │ ├── MediaElementAudioSourceNode.h │ │ │ ├── MediaElementAudioSourceNode.idl │ │ │ ├── MediaStreamAudioDestinationNode.cpp │ │ │ ├── MediaStreamAudioDestinationNode.h │ │ │ ├── MediaStreamAudioDestinationNode.idl │ │ │ ├── MediaStreamAudioSource.cpp │ │ │ ├── MediaStreamAudioSource.h │ │ │ ├── MediaStreamAudioSourceCocoa.cpp │ │ │ ├── MediaStreamAudioSourceNode.cpp │ │ │ ├── MediaStreamAudioSourceNode.h │ │ │ ├── MediaStreamAudioSourceNode.idl │ │ │ ├── OfflineAudioCompletionEvent.cpp │ │ │ ├── OfflineAudioCompletionEvent.h │ │ │ ├── OfflineAudioCompletionEvent.idl │ │ │ ├── OfflineAudioContext.cpp │ │ │ ├── OfflineAudioContext.h │ │ │ ├── OfflineAudioContext.idl │ │ │ ├── OfflineAudioDestinationNode.cpp │ │ │ ├── OfflineAudioDestinationNode.h │ │ │ ├── OscillatorNode.cpp │ │ │ ├── OscillatorNode.h │ │ │ ├── OscillatorNode.idl │ │ │ ├── PannerNode.cpp │ │ │ ├── PannerNode.h │ │ │ ├── PannerNode.idl │ │ │ ├── PeriodicWave.cpp │ │ │ ├── PeriodicWave.h │ │ │ ├── PeriodicWave.idl │ │ │ ├── RealtimeAnalyser.cpp │ │ │ ├── RealtimeAnalyser.h │ │ │ ├── ScriptProcessorNode.cpp │ │ │ ├── ScriptProcessorNode.h │ │ │ ├── ScriptProcessorNode.idl │ │ │ ├── WaveShaperDSPKernel.cpp │ │ │ ├── WaveShaperDSPKernel.h │ │ │ ├── WaveShaperNode.cpp │ │ │ ├── WaveShaperNode.h │ │ │ ├── WaveShaperNode.idl │ │ │ ├── WaveShaperProcessor.cpp │ │ │ └── WaveShaperProcessor.h │ │ ├── webauthn │ │ │ ├── AttestationConveyancePreference.h │ │ │ ├── AttestationConveyancePreference.idl │ │ │ ├── AuthenticationExtensionsClientInputs.h │ │ │ ├── AuthenticationExtensionsClientInputs.idl │ │ │ ├── AuthenticatorAssertionResponse.h │ │ │ ├── AuthenticatorAssertionResponse.idl │ │ │ ├── AuthenticatorAttestationResponse.h │ │ │ ├── AuthenticatorAttestationResponse.idl │ │ │ ├── AuthenticatorCoordinator.cpp │ │ │ ├── AuthenticatorCoordinator.h │ │ │ ├── AuthenticatorCoordinatorClient.cpp │ │ │ ├── AuthenticatorCoordinatorClient.h │ │ │ ├── AuthenticatorResponse.h │ │ │ ├── AuthenticatorResponse.idl │ │ │ ├── AuthenticatorTransport.h │ │ │ ├── AuthenticatorTransport.idl │ │ │ ├── PublicKeyCredential.cpp │ │ │ ├── PublicKeyCredential.h │ │ │ ├── PublicKeyCredential.idl │ │ │ ├── PublicKeyCredentialCreationOptions.h │ │ │ ├── PublicKeyCredentialCreationOptions.idl │ │ │ ├── PublicKeyCredentialData.h │ │ │ ├── PublicKeyCredentialDescriptor.h │ │ │ ├── PublicKeyCredentialDescriptor.idl │ │ │ ├── PublicKeyCredentialRequestOptions.h │ │ │ ├── PublicKeyCredentialRequestOptions.idl │ │ │ ├── PublicKeyCredentialType.h │ │ │ ├── PublicKeyCredentialType.idl │ │ │ ├── UserVerificationRequirement.h │ │ │ ├── UserVerificationRequirement.idl │ │ │ ├── WebAuthenticationConstants.h │ │ │ ├── WebAuthenticationUtils.cpp │ │ │ ├── WebAuthenticationUtils.h │ │ │ ├── apdu │ │ │ │ ├── ApduCommand.cpp │ │ │ │ ├── ApduCommand.h │ │ │ │ ├── ApduResponse.cpp │ │ │ │ └── ApduResponse.h │ │ │ ├── cbor │ │ │ │ ├── CBORBinary.h │ │ │ │ ├── CBORReader.cpp │ │ │ │ ├── CBORReader.h │ │ │ │ ├── CBORValue.cpp │ │ │ │ ├── CBORValue.h │ │ │ │ ├── CBORWriter.cpp │ │ │ │ └── CBORWriter.h │ │ │ └── fido │ │ │ │ ├── AuthenticatorGetInfoResponse.cpp │ │ │ │ ├── AuthenticatorGetInfoResponse.h │ │ │ │ ├── AuthenticatorSupportedOptions.cpp │ │ │ │ ├── AuthenticatorSupportedOptions.h │ │ │ │ ├── DeviceRequestConverter.cpp │ │ │ │ ├── DeviceRequestConverter.h │ │ │ │ ├── DeviceResponseConverter.cpp │ │ │ │ ├── DeviceResponseConverter.h │ │ │ │ ├── FidoConstants.cpp │ │ │ │ ├── FidoConstants.h │ │ │ │ ├── FidoHidMessage.cpp │ │ │ │ ├── FidoHidMessage.h │ │ │ │ ├── FidoHidPacket.cpp │ │ │ │ ├── FidoHidPacket.h │ │ │ │ ├── FidoParsingUtils.cpp │ │ │ │ ├── FidoParsingUtils.h │ │ │ │ ├── U2fCommandConstructor.cpp │ │ │ │ ├── U2fCommandConstructor.h │ │ │ │ ├── U2fResponseConverter.cpp │ │ │ │ └── U2fResponseConverter.h │ │ ├── webdatabase │ │ │ ├── ChangeVersionData.h │ │ │ ├── ChangeVersionWrapper.cpp │ │ │ ├── ChangeVersionWrapper.h │ │ │ ├── DOMWindowWebDatabase.cpp │ │ │ ├── DOMWindowWebDatabase.h │ │ │ ├── DOMWindowWebDatabase.idl │ │ │ ├── Database.cpp │ │ │ ├── Database.h │ │ │ ├── Database.idl │ │ │ ├── DatabaseAuthorizer.cpp │ │ │ ├── DatabaseAuthorizer.h │ │ │ ├── DatabaseCallback.h │ │ │ ├── DatabaseCallback.idl │ │ │ ├── DatabaseContext.cpp │ │ │ ├── DatabaseContext.h │ │ │ ├── DatabaseDetails.h │ │ │ ├── DatabaseManager.cpp │ │ │ ├── DatabaseManager.h │ │ │ ├── DatabaseManagerClient.h │ │ │ ├── DatabaseTask.cpp │ │ │ ├── DatabaseTask.h │ │ │ ├── DatabaseThread.cpp │ │ │ ├── DatabaseThread.h │ │ │ ├── DatabaseTracker.cpp │ │ │ ├── DatabaseTracker.h │ │ │ ├── OriginLock.cpp │ │ │ ├── OriginLock.h │ │ │ ├── SQLCallbackWrapper.h │ │ │ ├── SQLError.h │ │ │ ├── SQLError.idl │ │ │ ├── SQLResultSet.cpp │ │ │ ├── SQLResultSet.h │ │ │ ├── SQLResultSet.idl │ │ │ ├── SQLResultSetRowList.cpp │ │ │ ├── SQLResultSetRowList.h │ │ │ ├── SQLResultSetRowList.idl │ │ │ ├── SQLStatement.cpp │ │ │ ├── SQLStatement.h │ │ │ ├── SQLStatementCallback.h │ │ │ ├── SQLStatementCallback.idl │ │ │ ├── SQLStatementErrorCallback.h │ │ │ ├── SQLStatementErrorCallback.idl │ │ │ ├── SQLTransaction.cpp │ │ │ ├── SQLTransaction.h │ │ │ ├── SQLTransaction.idl │ │ │ ├── SQLTransactionBackend.cpp │ │ │ ├── SQLTransactionBackend.h │ │ │ ├── SQLTransactionCallback.h │ │ │ ├── SQLTransactionCallback.idl │ │ │ ├── SQLTransactionCoordinator.cpp │ │ │ ├── SQLTransactionCoordinator.h │ │ │ ├── SQLTransactionErrorCallback.h │ │ │ ├── SQLTransactionErrorCallback.idl │ │ │ ├── SQLTransactionState.h │ │ │ ├── SQLTransactionStateMachine.cpp │ │ │ ├── SQLTransactionStateMachine.h │ │ │ └── cocoa │ │ │ │ └── DatabaseManagerCocoa.mm │ │ ├── webdriver │ │ │ ├── NavigatorWebDriver.cpp │ │ │ ├── NavigatorWebDriver.h │ │ │ └── NavigatorWebDriver.idl │ │ ├── webgpu │ │ │ ├── GPUBindGroupLayoutBinding.h │ │ │ ├── GPUBindGroupLayoutBinding.idl │ │ │ ├── GPUBindGroupLayoutDescriptor.h │ │ │ ├── GPUBindGroupLayoutDescriptor.idl │ │ │ ├── GPUBlendDescriptor.idl │ │ │ ├── GPUBufferDescriptor.idl │ │ │ ├── GPUBufferUsage.idl │ │ │ ├── GPUCanvasContext.cpp │ │ │ ├── GPUCanvasContext.h │ │ │ ├── GPUCanvasContext.idl │ │ │ ├── GPUColor.idl │ │ │ ├── GPUColorStateDescriptor.idl │ │ │ ├── GPUColorWriteBits.idl │ │ │ ├── GPUCompareFunction.idl │ │ │ ├── GPUDepthStencilStateDescriptor.idl │ │ │ ├── GPUExtent3D.idl │ │ │ ├── GPULoadOp.idl │ │ │ ├── GPUOrigin3D.h │ │ │ ├── GPUOrigin3D.idl │ │ │ ├── GPURequestAdapterOptions.idl │ │ │ ├── GPUSamplerDescriptor.idl │ │ │ ├── GPUShaderStageBit.h │ │ │ ├── GPUShaderStageBit.idl │ │ │ ├── GPUStoreOp.idl │ │ │ ├── GPUTextureDescriptor.idl │ │ │ ├── GPUTextureFormat.idl │ │ │ ├── GPUTextureUsage.idl │ │ │ ├── GPUVertexAttributeDescriptor.idl │ │ │ ├── GPUVertexBufferDescriptor.idl │ │ │ ├── GPUVertexInputDescriptor.idl │ │ │ ├── NavigatorGPU.cpp │ │ │ ├── NavigatorGPU.h │ │ │ ├── NavigatorGPU.idl │ │ │ ├── WHLSL │ │ │ │ ├── AST │ │ │ │ │ ├── WHLSLAST.h │ │ │ │ │ ├── WHLSLAddressSpace.h │ │ │ │ │ ├── WHLSLArrayReferenceType.h │ │ │ │ │ ├── WHLSLArrayType.h │ │ │ │ │ ├── WHLSLAssignmentExpression.h │ │ │ │ │ ├── WHLSLBaseFunctionAttribute.h │ │ │ │ │ ├── WHLSLBaseSemantic.h │ │ │ │ │ ├── WHLSLBlock.h │ │ │ │ │ ├── WHLSLBooleanLiteral.h │ │ │ │ │ ├── WHLSLBreak.h │ │ │ │ │ ├── WHLSLBuiltInSemantic.cpp │ │ │ │ │ ├── WHLSLBuiltInSemantic.h │ │ │ │ │ ├── WHLSLCallExpression.h │ │ │ │ │ ├── WHLSLCommaExpression.h │ │ │ │ │ ├── WHLSLConstantExpression.h │ │ │ │ │ ├── WHLSLContinue.h │ │ │ │ │ ├── WHLSLDereferenceExpression.h │ │ │ │ │ ├── WHLSLDoWhileLoop.h │ │ │ │ │ ├── WHLSLDotExpression.h │ │ │ │ │ ├── WHLSLEffectfulExpressionStatement.h │ │ │ │ │ ├── WHLSLEntryPointType.h │ │ │ │ │ ├── WHLSLEnumerationDefinition.h │ │ │ │ │ ├── WHLSLEnumerationMember.h │ │ │ │ │ ├── WHLSLEnumerationMemberLiteral.h │ │ │ │ │ ├── WHLSLExpression.h │ │ │ │ │ ├── WHLSLFallthrough.h │ │ │ │ │ ├── WHLSLFloatLiteral.h │ │ │ │ │ ├── WHLSLFloatLiteralType.cpp │ │ │ │ │ ├── WHLSLFloatLiteralType.h │ │ │ │ │ ├── WHLSLForLoop.h │ │ │ │ │ ├── WHLSLFunctionAttribute.h │ │ │ │ │ ├── WHLSLFunctionDeclaration.h │ │ │ │ │ ├── WHLSLFunctionDefinition.h │ │ │ │ │ ├── WHLSLGlobalVariableReference.h │ │ │ │ │ ├── WHLSLIfStatement.h │ │ │ │ │ ├── WHLSLIndexExpression.h │ │ │ │ │ ├── WHLSLIntegerLiteral.cpp │ │ │ │ │ ├── WHLSLIntegerLiteral.h │ │ │ │ │ ├── WHLSLIntegerLiteralType.cpp │ │ │ │ │ ├── WHLSLIntegerLiteralType.h │ │ │ │ │ ├── WHLSLLogicalExpression.h │ │ │ │ │ ├── WHLSLLogicalNotExpression.h │ │ │ │ │ ├── WHLSLMakeArrayReferenceExpression.h │ │ │ │ │ ├── WHLSLMakePointerExpression.h │ │ │ │ │ ├── WHLSLNamedType.h │ │ │ │ │ ├── WHLSLNativeFunctionDeclaration.h │ │ │ │ │ ├── WHLSLNativeTypeDeclaration.h │ │ │ │ │ ├── WHLSLNullLiteral.h │ │ │ │ │ ├── WHLSLNullLiteralType.cpp │ │ │ │ │ ├── WHLSLNullLiteralType.h │ │ │ │ │ ├── WHLSLNumThreadsFunctionAttribute.h │ │ │ │ │ ├── WHLSLPointerType.h │ │ │ │ │ ├── WHLSLPropertyAccessExpression.h │ │ │ │ │ ├── WHLSLQualifier.h │ │ │ │ │ ├── WHLSLReadModifyWriteExpression.h │ │ │ │ │ ├── WHLSLReferenceType.h │ │ │ │ │ ├── WHLSLReplaceWith.h │ │ │ │ │ ├── WHLSLResolvableType.h │ │ │ │ │ ├── WHLSLResourceSemantic.cpp │ │ │ │ │ ├── WHLSLResourceSemantic.h │ │ │ │ │ ├── WHLSLReturn.h │ │ │ │ │ ├── WHLSLSemantic.h │ │ │ │ │ ├── WHLSLSpecializationConstantSemantic.cpp │ │ │ │ │ ├── WHLSLSpecializationConstantSemantic.h │ │ │ │ │ ├── WHLSLStageInOutSemantic.cpp │ │ │ │ │ ├── WHLSLStageInOutSemantic.h │ │ │ │ │ ├── WHLSLStatement.h │ │ │ │ │ ├── WHLSLStatementList.h │ │ │ │ │ ├── WHLSLStructureDefinition.h │ │ │ │ │ ├── WHLSLStructureElement.h │ │ │ │ │ ├── WHLSLSwitchCase.h │ │ │ │ │ ├── WHLSLSwitchStatement.h │ │ │ │ │ ├── WHLSLTernaryExpression.h │ │ │ │ │ ├── WHLSLTrap.h │ │ │ │ │ ├── WHLSLType.h │ │ │ │ │ ├── WHLSLTypeArgument.cpp │ │ │ │ │ ├── WHLSLTypeArgument.h │ │ │ │ │ ├── WHLSLTypeDefinition.h │ │ │ │ │ ├── WHLSLTypeReference.cpp │ │ │ │ │ ├── WHLSLTypeReference.h │ │ │ │ │ ├── WHLSLUnnamedType.h │ │ │ │ │ ├── WHLSLUnsignedIntegerLiteral.cpp │ │ │ │ │ ├── WHLSLUnsignedIntegerLiteral.h │ │ │ │ │ ├── WHLSLUnsignedIntegerLiteralType.cpp │ │ │ │ │ ├── WHLSLUnsignedIntegerLiteralType.h │ │ │ │ │ ├── WHLSLVariableDeclaration.h │ │ │ │ │ ├── WHLSLVariableDeclarationsStatement.h │ │ │ │ │ ├── WHLSLVariableReference.h │ │ │ │ │ └── WHLSLWhileLoop.h │ │ │ │ ├── Metal │ │ │ │ │ ├── WHLSLEntryPointScaffolding.cpp │ │ │ │ │ ├── WHLSLEntryPointScaffolding.h │ │ │ │ │ ├── WHLSLFunctionWriter.cpp │ │ │ │ │ ├── WHLSLFunctionWriter.h │ │ │ │ │ ├── WHLSLMetalCodeGenerator.cpp │ │ │ │ │ ├── WHLSLMetalCodeGenerator.h │ │ │ │ │ ├── WHLSLNativeFunctionWriter.cpp │ │ │ │ │ ├── WHLSLNativeFunctionWriter.h │ │ │ │ │ ├── WHLSLNativeTypeWriter.cpp │ │ │ │ │ ├── WHLSLNativeTypeWriter.h │ │ │ │ │ ├── WHLSLTypeNamer.cpp │ │ │ │ │ ├── WHLSLTypeNamer.h │ │ │ │ │ ├── WHLSLVertexBufferIndexCalculator.cpp │ │ │ │ │ └── WHLSLVertexBufferIndexCalculator.h │ │ │ │ ├── WHLSLASTDumper.cpp │ │ │ │ ├── WHLSLASTDumper.h │ │ │ │ ├── WHLSLAutoInitializeVariables.cpp │ │ │ │ ├── WHLSLAutoInitializeVariables.h │ │ │ │ ├── WHLSLBuildStandardLibraryFunctionMap.py │ │ │ │ ├── WHLSLCheckDuplicateFunctions.cpp │ │ │ │ ├── WHLSLCheckDuplicateFunctions.h │ │ │ │ ├── WHLSLCheckTextureReferences.cpp │ │ │ │ ├── WHLSLCheckTextureReferences.h │ │ │ │ ├── WHLSLChecker.cpp │ │ │ │ ├── WHLSLChecker.h │ │ │ │ ├── WHLSLComputeDimensions.cpp │ │ │ │ ├── WHLSLComputeDimensions.h │ │ │ │ ├── WHLSLFunctionStageChecker.cpp │ │ │ │ ├── WHLSLFunctionStageChecker.h │ │ │ │ ├── WHLSLGatherEntryPointItems.cpp │ │ │ │ ├── WHLSLGatherEntryPointItems.h │ │ │ │ ├── WHLSLHighZombieFinder.cpp │ │ │ │ ├── WHLSLHighZombieFinder.h │ │ │ │ ├── WHLSLInferTypes.cpp │ │ │ │ ├── WHLSLInferTypes.h │ │ │ │ ├── WHLSLIntrinsics.cpp │ │ │ │ ├── WHLSLIntrinsics.h │ │ │ │ ├── WHLSLLexer.cpp │ │ │ │ ├── WHLSLLexer.h │ │ │ │ ├── WHLSLLiteralTypeChecker.cpp │ │ │ │ ├── WHLSLLiteralTypeChecker.h │ │ │ │ ├── WHLSLNameContext.cpp │ │ │ │ ├── WHLSLNameContext.h │ │ │ │ ├── WHLSLNameResolver.cpp │ │ │ │ ├── WHLSLNameResolver.h │ │ │ │ ├── WHLSLParser.cpp │ │ │ │ ├── WHLSLParser.h │ │ │ │ ├── WHLSLPipelineDescriptor.h │ │ │ │ ├── WHLSLPrepare.cpp │ │ │ │ ├── WHLSLPrepare.h │ │ │ │ ├── WHLSLPreserveVariableLifetimes.cpp │ │ │ │ ├── WHLSLPreserveVariableLifetimes.h │ │ │ │ ├── WHLSLProgram.h │ │ │ │ ├── WHLSLPropertyResolver.cpp │ │ │ │ ├── WHLSLPropertyResolver.h │ │ │ │ ├── WHLSLRecursionChecker.cpp │ │ │ │ ├── WHLSLRecursionChecker.h │ │ │ │ ├── WHLSLRecursiveTypeChecker.cpp │ │ │ │ ├── WHLSLRecursiveTypeChecker.h │ │ │ │ ├── WHLSLResolveOverloadImpl.cpp │ │ │ │ ├── WHLSLResolveOverloadImpl.h │ │ │ │ ├── WHLSLResolvingType.h │ │ │ │ ├── WHLSLScopedSetAdder.h │ │ │ │ ├── WHLSLSemanticMatcher.cpp │ │ │ │ ├── WHLSLSemanticMatcher.h │ │ │ │ ├── WHLSLStandardLibrary.txt │ │ │ │ ├── WHLSLStandardLibraryFunctionMap.h │ │ │ │ ├── WHLSLStandardLibraryUtilities.cpp │ │ │ │ ├── WHLSLStandardLibraryUtilities.h │ │ │ │ ├── WHLSLStatementBehaviorChecker.cpp │ │ │ │ ├── WHLSLStatementBehaviorChecker.h │ │ │ │ ├── WHLSLSynthesizeArrayOperatorLength.cpp │ │ │ │ ├── WHLSLSynthesizeArrayOperatorLength.h │ │ │ │ ├── WHLSLSynthesizeConstructors.cpp │ │ │ │ ├── WHLSLSynthesizeConstructors.h │ │ │ │ ├── WHLSLSynthesizeEnumerationFunctions.cpp │ │ │ │ ├── WHLSLSynthesizeEnumerationFunctions.h │ │ │ │ ├── WHLSLSynthesizeStructureAccessors.cpp │ │ │ │ ├── WHLSLSynthesizeStructureAccessors.h │ │ │ │ ├── WHLSLVisitor.cpp │ │ │ │ └── WHLSLVisitor.h │ │ │ ├── WebGPU.cpp │ │ │ ├── WebGPU.h │ │ │ ├── WebGPU.idl │ │ │ ├── WebGPUAdapter.cpp │ │ │ ├── WebGPUAdapter.h │ │ │ ├── WebGPUAdapter.idl │ │ │ ├── WebGPUBindGroup.cpp │ │ │ ├── WebGPUBindGroup.h │ │ │ ├── WebGPUBindGroup.idl │ │ │ ├── WebGPUBindGroupBinding.h │ │ │ ├── WebGPUBindGroupBinding.idl │ │ │ ├── WebGPUBindGroupDescriptor.cpp │ │ │ ├── WebGPUBindGroupDescriptor.h │ │ │ ├── WebGPUBindGroupDescriptor.idl │ │ │ ├── WebGPUBindGroupLayout.cpp │ │ │ ├── WebGPUBindGroupLayout.h │ │ │ ├── WebGPUBindGroupLayout.idl │ │ │ ├── WebGPUBuffer.cpp │ │ │ ├── WebGPUBuffer.h │ │ │ ├── WebGPUBuffer.idl │ │ │ ├── WebGPUBufferBinding.h │ │ │ ├── WebGPUBufferBinding.idl │ │ │ ├── WebGPUCommandBuffer.cpp │ │ │ ├── WebGPUCommandBuffer.h │ │ │ ├── WebGPUCommandBuffer.idl │ │ │ ├── WebGPUCommandEncoder.cpp │ │ │ ├── WebGPUCommandEncoder.h │ │ │ ├── WebGPUCommandEncoder.idl │ │ │ ├── WebGPUComputePassEncoder.cpp │ │ │ ├── WebGPUComputePassEncoder.h │ │ │ ├── WebGPUComputePassEncoder.idl │ │ │ ├── WebGPUComputePipeline.cpp │ │ │ ├── WebGPUComputePipeline.h │ │ │ ├── WebGPUComputePipeline.idl │ │ │ ├── WebGPUComputePipelineDescriptor.cpp │ │ │ ├── WebGPUComputePipelineDescriptor.h │ │ │ ├── WebGPUComputePipelineDescriptor.idl │ │ │ ├── WebGPUDevice.cpp │ │ │ ├── WebGPUDevice.h │ │ │ ├── WebGPUDevice.idl │ │ │ ├── WebGPUPipelineDescriptorBase.h │ │ │ ├── WebGPUPipelineDescriptorBase.idl │ │ │ ├── WebGPUPipelineLayout.cpp │ │ │ ├── WebGPUPipelineLayout.h │ │ │ ├── WebGPUPipelineLayout.idl │ │ │ ├── WebGPUPipelineLayoutDescriptor.cpp │ │ │ ├── WebGPUPipelineLayoutDescriptor.h │ │ │ ├── WebGPUPipelineLayoutDescriptor.idl │ │ │ ├── WebGPUPipelineStageDescriptor.cpp │ │ │ ├── WebGPUPipelineStageDescriptor.h │ │ │ ├── WebGPUPipelineStageDescriptor.idl │ │ │ ├── WebGPUProgrammablePassEncoder.cpp │ │ │ ├── WebGPUProgrammablePassEncoder.h │ │ │ ├── WebGPUProgrammablePassEncoder.idl │ │ │ ├── WebGPUQueue.cpp │ │ │ ├── WebGPUQueue.h │ │ │ ├── WebGPUQueue.idl │ │ │ ├── WebGPURenderPassDescriptor.cpp │ │ │ ├── WebGPURenderPassDescriptor.h │ │ │ ├── WebGPURenderPassDescriptor.idl │ │ │ ├── WebGPURenderPassEncoder.cpp │ │ │ ├── WebGPURenderPassEncoder.h │ │ │ ├── WebGPURenderPassEncoder.idl │ │ │ ├── WebGPURenderPipeline.cpp │ │ │ ├── WebGPURenderPipeline.h │ │ │ ├── WebGPURenderPipeline.idl │ │ │ ├── WebGPURenderPipelineDescriptor.cpp │ │ │ ├── WebGPURenderPipelineDescriptor.h │ │ │ ├── WebGPURenderPipelineDescriptor.idl │ │ │ ├── WebGPUSampler.cpp │ │ │ ├── WebGPUSampler.h │ │ │ ├── WebGPUSampler.idl │ │ │ ├── WebGPUShaderModule.cpp │ │ │ ├── WebGPUShaderModule.h │ │ │ ├── WebGPUShaderModule.idl │ │ │ ├── WebGPUShaderModuleDescriptor.h │ │ │ ├── WebGPUShaderModuleDescriptor.idl │ │ │ ├── WebGPUSwapChain.cpp │ │ │ ├── WebGPUSwapChain.h │ │ │ ├── WebGPUSwapChain.idl │ │ │ ├── WebGPUSwapChainDescriptor.cpp │ │ │ ├── WebGPUSwapChainDescriptor.h │ │ │ ├── WebGPUTexture.cpp │ │ │ ├── WebGPUTexture.h │ │ │ ├── WebGPUTexture.idl │ │ │ ├── WebGPUTextureView.cpp │ │ │ ├── WebGPUTextureView.h │ │ │ ├── WebGPUTextureView.idl │ │ │ ├── WorkerNavigatorGPU.cpp │ │ │ ├── WorkerNavigatorGPU.h │ │ │ └── WorkerNavigatorGPU.idl │ │ ├── websockets │ │ │ ├── CloseEvent.h │ │ │ ├── CloseEvent.idl │ │ │ ├── ThreadableWebSocketChannel.cpp │ │ │ ├── ThreadableWebSocketChannel.h │ │ │ ├── ThreadableWebSocketChannelClientWrapper.cpp │ │ │ ├── ThreadableWebSocketChannelClientWrapper.h │ │ │ ├── WebSocket.cpp │ │ │ ├── WebSocket.h │ │ │ ├── WebSocket.idl │ │ │ ├── WebSocketChannel.cpp │ │ │ ├── WebSocketChannel.h │ │ │ ├── WebSocketChannelClient.h │ │ │ ├── WebSocketDeflateFramer.cpp │ │ │ ├── WebSocketDeflateFramer.h │ │ │ ├── WebSocketDeflater.cpp │ │ │ ├── WebSocketDeflater.h │ │ │ ├── WebSocketExtensionDispatcher.cpp │ │ │ ├── WebSocketExtensionDispatcher.h │ │ │ ├── WebSocketExtensionParser.cpp │ │ │ ├── WebSocketExtensionParser.h │ │ │ ├── WebSocketExtensionProcessor.h │ │ │ ├── WebSocketFrame.cpp │ │ │ ├── WebSocketFrame.h │ │ │ ├── WebSocketHandshake.cpp │ │ │ ├── WebSocketHandshake.h │ │ │ ├── WorkerThreadableWebSocketChannel.cpp │ │ │ └── WorkerThreadableWebSocketChannel.h │ │ └── webvr │ │ │ ├── DOMWindowWebVR.idl │ │ │ ├── GamepadWebVR.cpp │ │ │ ├── GamepadWebVR.h │ │ │ ├── GamepadWebVR.idl │ │ │ ├── NavigatorWebVR.cpp │ │ │ ├── NavigatorWebVR.h │ │ │ ├── NavigatorWebVR.idl │ │ │ ├── VRDisplay.cpp │ │ │ ├── VRDisplay.h │ │ │ ├── VRDisplay.idl │ │ │ ├── VRDisplayCapabilities.h │ │ │ ├── VRDisplayCapabilities.idl │ │ │ ├── VRDisplayEvent.cpp │ │ │ ├── VRDisplayEvent.h │ │ │ ├── VRDisplayEvent.idl │ │ │ ├── VRDisplayEventReason.h │ │ │ ├── VRDisplayEventReason.idl │ │ │ ├── VREye.h │ │ │ ├── VREye.idl │ │ │ ├── VREyeParameters.cpp │ │ │ ├── VREyeParameters.h │ │ │ ├── VREyeParameters.idl │ │ │ ├── VRFieldOfView.h │ │ │ ├── VRFieldOfView.idl │ │ │ ├── VRFrameData.cpp │ │ │ ├── VRFrameData.h │ │ │ ├── VRFrameData.idl │ │ │ ├── VRLayerInit.h │ │ │ ├── VRLayerInit.idl │ │ │ ├── VRPose.cpp │ │ │ ├── VRPose.h │ │ │ ├── VRPose.idl │ │ │ ├── VRStageParameters.cpp │ │ │ ├── VRStageParameters.h │ │ │ └── VRStageParameters.idl │ ├── PAL │ │ ├── Configurations │ │ │ ├── Base.xcconfig │ │ │ ├── CopyPALHeaders.xcconfig │ │ │ ├── DebugRelease.xcconfig │ │ │ ├── FeatureDefines.xcconfig │ │ │ ├── PAL.xcconfig │ │ │ ├── SDKVariant.xcconfig │ │ │ ├── Version.xcconfig │ │ │ └── WebKitTargetConditionals.xcconfig │ │ ├── PAL.xcodeproj │ │ │ └── project.pbxproj │ │ ├── config.h │ │ └── pal │ │ │ ├── CMakeLists.txt │ │ │ ├── ExportMacros.h │ │ │ ├── FileSizeFormatter.cpp │ │ │ ├── FileSizeFormatter.h │ │ │ ├── Gunzip.h │ │ │ ├── HysteresisActivity.h │ │ │ ├── LogMacros.h │ │ │ ├── Logging.cpp │ │ │ ├── Logging.h │ │ │ ├── PlatformAppleWin.cmake │ │ │ ├── PlatformFTW.cmake │ │ │ ├── PlatformGTK.cmake │ │ │ ├── PlatformMac.cmake │ │ │ ├── PlatformPlayStation.cmake │ │ │ ├── PlatformUltralightLinux.cmake │ │ │ ├── PlatformUltralightMac.cmake │ │ │ ├── PlatformUltralightWin.cmake │ │ │ ├── PlatformWPE.cmake │ │ │ ├── PlatformWin.cmake │ │ │ ├── PlatformWinCairo.cmake │ │ │ ├── SessionID.cpp │ │ │ ├── SessionID.h │ │ │ ├── avfoundation │ │ │ ├── MediaTimeAVFoundation.cpp │ │ │ └── MediaTimeAVFoundation.h │ │ │ ├── cf │ │ │ ├── CoreMediaSoftLink.cpp │ │ │ └── CoreMediaSoftLink.h │ │ │ ├── cocoa │ │ │ ├── AVFoundationSoftLink.h │ │ │ ├── AVFoundationSoftLink.mm │ │ │ ├── AppSSOSoftLink.h │ │ │ ├── AppSSOSoftLink.mm │ │ │ ├── FileSizeFormatterCocoa.mm │ │ │ ├── Gunzip.cpp │ │ │ ├── PassKitSoftLink.h │ │ │ └── PassKitSoftLink.mm │ │ │ ├── crypto │ │ │ ├── CryptoDigest.h │ │ │ ├── commoncrypto │ │ │ │ └── CryptoDigestCommonCrypto.cpp │ │ │ ├── gcrypt │ │ │ │ ├── CryptoDigestGCrypt.cpp │ │ │ │ ├── Handle.h │ │ │ │ ├── Initialization.h │ │ │ │ └── Utilities.h │ │ │ ├── openssl │ │ │ │ └── CryptoDigestOpenSSL.cpp │ │ │ ├── tasn1 │ │ │ │ ├── Utilities.cpp │ │ │ │ ├── Utilities.h │ │ │ │ └── WebCrypto.asn │ │ │ └── win │ │ │ │ └── CryptoDigestWin.cpp │ │ │ ├── ios │ │ │ ├── QuickLookSoftLink.h │ │ │ ├── QuickLookSoftLink.mm │ │ │ ├── UIKitSoftLink.h │ │ │ └── UIKitSoftLink.mm │ │ │ ├── mac │ │ │ ├── LookupSoftLink.h │ │ │ └── LookupSoftLink.mm │ │ │ ├── spi │ │ │ ├── cf │ │ │ │ ├── CFLocaleSPI.h │ │ │ │ ├── CFNetworkConnectionCacheSPI.h │ │ │ │ ├── CFNetworkSPI.h │ │ │ │ ├── CFNetworkSPIWin.cpp │ │ │ │ ├── CFUtilitiesSPI.h │ │ │ │ ├── CoreAudioSPI.h │ │ │ │ └── CoreMediaSPI.h │ │ │ ├── cg │ │ │ │ ├── CoreGraphicsSPI.h │ │ │ │ └── ImageIOSPI.h │ │ │ ├── cocoa │ │ │ │ ├── AVKitSPI.h │ │ │ │ ├── AppSSOSPI.h │ │ │ │ ├── AudioToolboxSPI.h │ │ │ │ ├── AuthKitSPI.h │ │ │ │ ├── CFNSURLConnectionSPI.h │ │ │ │ ├── CommonCryptoSPI.h │ │ │ │ ├── CoreTextSPI.h │ │ │ │ ├── DataDetectorsCoreSPI.h │ │ │ │ ├── IOKitSPI.h │ │ │ │ ├── IOPMLibSPI.h │ │ │ │ ├── IOPSLibSPI.h │ │ │ │ ├── IOReturnSPI.h │ │ │ │ ├── IOSurfaceSPI.h │ │ │ │ ├── IOTypesSPI.h │ │ │ │ ├── LaunchServicesSPI.h │ │ │ │ ├── MachVMSPI.h │ │ │ │ ├── MetalSPI.h │ │ │ │ ├── NEFilterSourceSPI.h │ │ │ │ ├── NSAttributedStringSPI.h │ │ │ │ ├── NSButtonCellSPI.h │ │ │ │ ├── NSCalendarDateSPI.h │ │ │ │ ├── NSColorSPI.h │ │ │ │ ├── NSExtensionSPI.h │ │ │ │ ├── NSFileManagerSPI.h │ │ │ │ ├── NSFileSizeFormatterSPI.h │ │ │ │ ├── NSKeyedArchiverSPI.h │ │ │ │ ├── NSProgressSPI.h │ │ │ │ ├── NSStringSPI.h │ │ │ │ ├── NSTouchBarSPI.h │ │ │ │ ├── NSURLConnectionSPI.h │ │ │ │ ├── NSURLDownloadSPI.h │ │ │ │ ├── NSURLFileTypeMappingsSPI.h │ │ │ │ ├── NSXPCConnectionSPI.h │ │ │ │ ├── PassKitSPI.h │ │ │ │ ├── QuartzCoreSPI.h │ │ │ │ ├── RevealSPI.h │ │ │ │ ├── SecKeyProxySPI.h │ │ │ │ ├── ServersSPI.h │ │ │ │ ├── URLFormattingSPI.h │ │ │ │ ├── WebFilterEvaluatorSPI.h │ │ │ │ └── pthreadSPI.h │ │ │ ├── ios │ │ │ │ ├── CelestialSPI.h │ │ │ │ ├── CoreUISPI.h │ │ │ │ ├── DataDetectorsUISPI.h │ │ │ │ ├── GraphicsServicesSPI.h │ │ │ │ ├── MediaPlayerSPI.h │ │ │ │ ├── MobileGestaltSPI.h │ │ │ │ ├── OpenGLESSPI.h │ │ │ │ ├── QuickLookSPI.h │ │ │ │ ├── SQLite3SPI.h │ │ │ │ ├── SystemPreviewSPI.h │ │ │ │ └── UIKitSPI.h │ │ │ ├── mac │ │ │ │ ├── AVFoundationSPI.h │ │ │ │ ├── CoreUISPI.h │ │ │ │ ├── DataDetectorsSPI.h │ │ │ │ ├── HIServicesSPI.h │ │ │ │ ├── HIToolboxSPI.h │ │ │ │ ├── LookupSPI.h │ │ │ │ ├── MediaRemoteSPI.h │ │ │ │ ├── NSAccessibilitySPI.h │ │ │ │ ├── NSAppearanceSPI.h │ │ │ │ ├── NSApplicationSPI.h │ │ │ │ ├── NSCellSPI.h │ │ │ │ ├── NSColorWellSPI.h │ │ │ │ ├── NSEventSPI.h │ │ │ │ ├── NSFontSPI.h │ │ │ │ ├── NSGraphicsSPI.h │ │ │ │ ├── NSImageSPI.h │ │ │ │ ├── NSImmediateActionGestureRecognizerSPI.h │ │ │ │ ├── NSMenuSPI.h │ │ │ │ ├── NSPasteboardSPI.h │ │ │ │ ├── NSPopoverColorWellSPI.h │ │ │ │ ├── NSPopoverSPI.h │ │ │ │ ├── NSResponderSPI.h │ │ │ │ ├── NSScrollViewSPI.h │ │ │ │ ├── NSScrollerImpSPI.h │ │ │ │ ├── NSScrollingInputFilterSPI.h │ │ │ │ ├── NSScrollingMomentumCalculatorSPI.h │ │ │ │ ├── NSSharingServicePickerSPI.h │ │ │ │ ├── NSSharingServiceSPI.h │ │ │ │ ├── NSSpellCheckerSPI.h │ │ │ │ ├── NSTextFinderSPI.h │ │ │ │ ├── NSViewSPI.h │ │ │ │ ├── NSWindowSPI.h │ │ │ │ ├── PIPSPI.h │ │ │ │ ├── QTKitSPI.h │ │ │ │ ├── QuickLookMacSPI.h │ │ │ │ ├── SpeechSynthesisSPI.h │ │ │ │ └── TelephonyUtilitiesSPI.h │ │ │ └── win │ │ │ │ └── CoreTextSPIWin.h │ │ │ ├── system │ │ │ ├── Clock.h │ │ │ ├── ClockGeneric.cpp │ │ │ ├── ClockGeneric.h │ │ │ ├── SleepDisabler.cpp │ │ │ ├── SleepDisabler.h │ │ │ ├── Sound.cpp │ │ │ ├── Sound.h │ │ │ ├── SystemSleepListener.cpp │ │ │ ├── SystemSleepListener.h │ │ │ ├── cocoa │ │ │ │ ├── SleepDisablerCocoa.cpp │ │ │ │ └── SleepDisablerCocoa.h │ │ │ ├── glib │ │ │ │ ├── SleepDisablerGLib.cpp │ │ │ │ └── SleepDisablerGLib.h │ │ │ ├── gtk │ │ │ │ └── SoundGtk.cpp │ │ │ ├── mac │ │ │ │ ├── ClockCM.h │ │ │ │ ├── ClockCM.mm │ │ │ │ ├── DefaultSearchProvider.cpp │ │ │ │ ├── DefaultSearchProvider.h │ │ │ │ ├── PopupMenu.h │ │ │ │ ├── PopupMenu.mm │ │ │ │ ├── SoundMac.mm │ │ │ │ ├── SystemSleepListenerMac.h │ │ │ │ ├── SystemSleepListenerMac.mm │ │ │ │ ├── WebPanel.h │ │ │ │ └── WebPanel.mm │ │ │ └── win │ │ │ │ └── SoundWin.cpp │ │ │ ├── text │ │ │ ├── KillRing.cpp │ │ │ ├── KillRing.h │ │ │ ├── UnencodableHandling.h │ │ │ └── mac │ │ │ │ └── KillRingMac.mm │ │ │ ├── unix │ │ │ └── LoggingUnix.cpp │ │ │ └── win │ │ │ └── LoggingWin.cpp │ ├── PlatformAppleWin.cmake │ ├── PlatformFTW.cmake │ ├── PlatformGTK.cmake │ ├── PlatformMac.cmake │ ├── PlatformPlayStation.cmake │ ├── PlatformUltralightLinux.cmake │ ├── PlatformUltralightMac.cmake │ ├── PlatformUltralightWin.cmake │ ├── PlatformWPE.cmake │ ├── PlatformWin.cmake │ ├── PlatformWinCairo.cmake │ ├── Resources │ │ ├── AttachmentPlaceholder.png │ │ ├── AttachmentPlaceholder@2x.png │ │ ├── ContentFilterBlockedPage.html │ │ ├── ListButtonArrow.png │ │ ├── ListButtonArrow@2x.png │ │ ├── copyCursor.png │ │ ├── deleteButtonPressed.tiff │ │ ├── linearSRGB.icc │ │ ├── missingImage.png │ │ ├── missingImage@2x.png │ │ ├── missingImage@3x.png │ │ ├── moveCursor.png │ │ ├── northEastSouthWestResizeCursor.png │ │ ├── northSouthResizeCursor.png │ │ ├── northWestSouthEastResizeCursor.png │ │ ├── nullPlugin.png │ │ ├── nullPlugin@2x.png │ │ ├── panIcon.png │ │ ├── plugIns.js │ │ ├── textAreaResizeCorner.png │ │ └── textAreaResizeCorner@2x.png │ ├── Scripts │ │ ├── DumpEditingHistory.js │ │ ├── EditingHistoryUtil.js │ │ ├── GenerateSettings.rb │ │ ├── LocalizableStrings.pm │ │ ├── SettingsTemplates │ │ │ ├── InternalSettingsGenerated.cpp.erb │ │ │ ├── InternalSettingsGenerated.h.erb │ │ │ ├── InternalSettingsGenerated.idl.erb │ │ │ ├── Settings.cpp.erb │ │ │ └── Settings.h.erb │ │ ├── check-xcfilelists.sh │ │ ├── extract-localizable-strings.pl │ │ ├── generate-derived-sources.sh │ │ └── generate-unified-sources.sh │ ├── Sources.txt │ ├── SourcesCocoa.txt │ ├── SourcesGTK.txt │ ├── SourcesWPE.txt │ ├── UWPDefs.h │ ├── UnifiedSources-output.xcfilelist │ ├── WebCore.order │ ├── WebCore.vcxproj │ │ └── WebCore.proj │ ├── WebCore.xcodeproj │ │ └── project.pbxproj │ ├── WebCoreDerivedSourcesPrefix.cpp │ ├── WebCoreMacros.cmake │ ├── WebCorePrefix.cpp │ ├── WebCorePrefix.h │ ├── accessibility │ │ ├── AXObjectCache.cpp │ │ ├── AXObjectCache.h │ │ ├── AXTextStateChangeIntent.h │ │ ├── AccessibilityARIAGrid.cpp │ │ ├── AccessibilityARIAGrid.h │ │ ├── AccessibilityARIAGridCell.cpp │ │ ├── AccessibilityARIAGridCell.h │ │ ├── AccessibilityARIAGridRow.cpp │ │ ├── AccessibilityARIAGridRow.h │ │ ├── AccessibilityAttachment.cpp │ │ ├── AccessibilityAttachment.h │ │ ├── AccessibilityImageMapLink.cpp │ │ ├── AccessibilityImageMapLink.h │ │ ├── AccessibilityLabel.cpp │ │ ├── AccessibilityLabel.h │ │ ├── AccessibilityList.cpp │ │ ├── AccessibilityList.h │ │ ├── AccessibilityListBox.cpp │ │ ├── AccessibilityListBox.h │ │ ├── AccessibilityListBoxOption.cpp │ │ ├── AccessibilityListBoxOption.h │ │ ├── AccessibilityMathMLElement.cpp │ │ ├── AccessibilityMathMLElement.h │ │ ├── AccessibilityMediaControls.cpp │ │ ├── AccessibilityMediaControls.h │ │ ├── AccessibilityMediaObject.cpp │ │ ├── AccessibilityMediaObject.h │ │ ├── AccessibilityMenuList.cpp │ │ ├── AccessibilityMenuList.h │ │ ├── AccessibilityMenuListOption.cpp │ │ ├── AccessibilityMenuListOption.h │ │ ├── AccessibilityMenuListPopup.cpp │ │ ├── AccessibilityMenuListPopup.h │ │ ├── AccessibilityMockObject.cpp │ │ ├── AccessibilityMockObject.h │ │ ├── AccessibilityNodeObject.cpp │ │ ├── AccessibilityNodeObject.h │ │ ├── AccessibilityObject.cpp │ │ ├── AccessibilityObject.h │ │ ├── AccessibilityObjectInterface.h │ │ ├── AccessibilityProgressIndicator.cpp │ │ ├── AccessibilityProgressIndicator.h │ │ ├── AccessibilityRenderObject.cpp │ │ ├── AccessibilityRenderObject.h │ │ ├── AccessibilityRole.idl │ │ ├── AccessibilitySVGElement.cpp │ │ ├── AccessibilitySVGElement.h │ │ ├── AccessibilitySVGRoot.cpp │ │ ├── AccessibilitySVGRoot.h │ │ ├── AccessibilityScrollView.cpp │ │ ├── AccessibilityScrollView.h │ │ ├── AccessibilityScrollbar.cpp │ │ ├── AccessibilityScrollbar.h │ │ ├── AccessibilitySlider.cpp │ │ ├── AccessibilitySlider.h │ │ ├── AccessibilitySpinButton.cpp │ │ ├── AccessibilitySpinButton.h │ │ ├── AccessibilityTable.cpp │ │ ├── AccessibilityTable.h │ │ ├── AccessibilityTableCell.cpp │ │ ├── AccessibilityTableCell.h │ │ ├── AccessibilityTableColumn.cpp │ │ ├── AccessibilityTableColumn.h │ │ ├── AccessibilityTableHeaderContainer.cpp │ │ ├── AccessibilityTableHeaderContainer.h │ │ ├── AccessibilityTableRow.cpp │ │ ├── AccessibilityTableRow.h │ │ ├── AccessibilityTree.cpp │ │ ├── AccessibilityTree.h │ │ ├── AccessibilityTreeItem.cpp │ │ ├── AccessibilityTreeItem.h │ │ ├── AccessibleSetValueEvent.cpp │ │ ├── AccessibleSetValueEvent.h │ │ ├── AriaAttributes.idl │ │ ├── atk │ │ │ ├── AXObjectCacheAtk.cpp │ │ │ ├── AccessibilityObjectAtk.cpp │ │ │ ├── WebKitAccessible.cpp │ │ │ ├── WebKitAccessible.h │ │ │ ├── WebKitAccessibleHyperlink.cpp │ │ │ ├── WebKitAccessibleHyperlink.h │ │ │ ├── WebKitAccessibleInterfaceAction.cpp │ │ │ ├── WebKitAccessibleInterfaceAction.h │ │ │ ├── WebKitAccessibleInterfaceComponent.cpp │ │ │ ├── WebKitAccessibleInterfaceComponent.h │ │ │ ├── WebKitAccessibleInterfaceDocument.cpp │ │ │ ├── WebKitAccessibleInterfaceDocument.h │ │ │ ├── WebKitAccessibleInterfaceEditableText.cpp │ │ │ ├── WebKitAccessibleInterfaceEditableText.h │ │ │ ├── WebKitAccessibleInterfaceHyperlinkImpl.cpp │ │ │ ├── WebKitAccessibleInterfaceHyperlinkImpl.h │ │ │ ├── WebKitAccessibleInterfaceHypertext.cpp │ │ │ ├── WebKitAccessibleInterfaceHypertext.h │ │ │ ├── WebKitAccessibleInterfaceImage.cpp │ │ │ ├── WebKitAccessibleInterfaceImage.h │ │ │ ├── WebKitAccessibleInterfaceSelection.cpp │ │ │ ├── WebKitAccessibleInterfaceSelection.h │ │ │ ├── WebKitAccessibleInterfaceTable.cpp │ │ │ ├── WebKitAccessibleInterfaceTable.h │ │ │ ├── WebKitAccessibleInterfaceTableCell.cpp │ │ │ ├── WebKitAccessibleInterfaceTableCell.h │ │ │ ├── WebKitAccessibleInterfaceText.cpp │ │ │ ├── WebKitAccessibleInterfaceText.h │ │ │ ├── WebKitAccessibleInterfaceValue.cpp │ │ │ ├── WebKitAccessibleInterfaceValue.h │ │ │ ├── WebKitAccessibleUtil.cpp │ │ │ └── WebKitAccessibleUtil.h │ │ ├── ios │ │ │ ├── AXObjectCacheIOS.mm │ │ │ ├── AccessibilityObjectIOS.mm │ │ │ ├── WebAccessibilityObjectWrapperIOS.h │ │ │ └── WebAccessibilityObjectWrapperIOS.mm │ │ ├── isolatedtree │ │ │ ├── AXIsolatedTree.cpp │ │ │ ├── AXIsolatedTree.h │ │ │ ├── AXIsolatedTreeNode.cpp │ │ │ └── AXIsolatedTreeNode.h │ │ ├── mac │ │ │ ├── AXObjectCacheMac.mm │ │ │ ├── AccessibilityObjectBase.mm │ │ │ ├── AccessibilityObjectMac.mm │ │ │ ├── WebAccessibilityObjectWrapperBase.h │ │ │ ├── WebAccessibilityObjectWrapperBase.mm │ │ │ ├── WebAccessibilityObjectWrapperMac.h │ │ │ └── WebAccessibilityObjectWrapperMac.mm │ │ └── win │ │ │ ├── AXObjectCacheWin.cpp │ │ │ ├── AccessibilityObjectWin.cpp │ │ │ ├── AccessibilityObjectWrapperWin.cpp │ │ │ └── AccessibilityObjectWrapperWin.h │ ├── animation │ │ ├── Animatable.idl │ │ ├── AnimationEffect.cpp │ │ ├── AnimationEffect.h │ │ ├── AnimationEffect.idl │ │ ├── AnimationEffectPhase.h │ │ ├── AnimationPlaybackEvent.cpp │ │ ├── AnimationPlaybackEvent.h │ │ ├── AnimationPlaybackEvent.idl │ │ ├── AnimationPlaybackEventInit.h │ │ ├── AnimationPlaybackEventInit.idl │ │ ├── AnimationTimeline.cpp │ │ ├── AnimationTimeline.h │ │ ├── AnimationTimeline.idl │ │ ├── BasicEffectTiming.h │ │ ├── CSSAnimation.cpp │ │ ├── CSSAnimation.h │ │ ├── CSSAnimation.idl │ │ ├── CSSPropertyBlendingClient.h │ │ ├── CSSTransition.cpp │ │ ├── CSSTransition.h │ │ ├── CSSTransition.idl │ │ ├── CompositeOperation.h │ │ ├── CompositeOperation.idl │ │ ├── CompositeOperationOrAuto.h │ │ ├── CompositeOperationOrAuto.idl │ │ ├── ComputedEffectTiming.h │ │ ├── ComputedEffectTiming.idl │ │ ├── DeclarativeAnimation.cpp │ │ ├── DeclarativeAnimation.h │ │ ├── DocumentTimeline.cpp │ │ ├── DocumentTimeline.h │ │ ├── DocumentTimeline.idl │ │ ├── DocumentTimelineOptions.h │ │ ├── DocumentTimelineOptions.idl │ │ ├── EffectTiming.h │ │ ├── EffectTiming.idl │ │ ├── FillMode.h │ │ ├── FillMode.idl │ │ ├── IterationCompositeOperation.h │ │ ├── IterationCompositeOperation.idl │ │ ├── KeyframeAnimationOptions.h │ │ ├── KeyframeAnimationOptions.idl │ │ ├── KeyframeEffect.cpp │ │ ├── KeyframeEffect.h │ │ ├── KeyframeEffect.idl │ │ ├── KeyframeEffectOptions.h │ │ ├── KeyframeEffectOptions.idl │ │ ├── OptionalEffectTiming.h │ │ ├── OptionalEffectTiming.idl │ │ ├── PlaybackDirection.h │ │ ├── PlaybackDirection.idl │ │ ├── WebAnimation.cpp │ │ ├── WebAnimation.h │ │ ├── WebAnimation.idl │ │ └── WebAnimationUtilities.h │ ├── bindings │ │ ├── IDLTypes.h │ │ ├── js │ │ │ ├── BufferSource.h │ │ │ ├── CachedModuleScriptLoader.cpp │ │ │ ├── CachedModuleScriptLoader.h │ │ │ ├── CachedModuleScriptLoaderClient.h │ │ │ ├── CachedScriptFetcher.cpp │ │ │ ├── CachedScriptFetcher.h │ │ │ ├── CachedScriptSourceProvider.h │ │ │ ├── CallTracer.cpp │ │ │ ├── CallTracer.h │ │ │ ├── CallTracerTypes.h │ │ │ ├── CommonVM.cpp │ │ │ ├── CommonVM.h │ │ │ ├── DOMGCOutputConstraint.cpp │ │ │ ├── DOMGCOutputConstraint.h │ │ │ ├── DOMPromiseProxy.h │ │ │ ├── DOMWrapperWorld.cpp │ │ │ ├── DOMWrapperWorld.h │ │ │ ├── GCController.cpp │ │ │ ├── GCController.h │ │ │ ├── IDBBindingUtilities.cpp │ │ │ ├── IDBBindingUtilities.h │ │ │ ├── JSAnimationEffectCustom.cpp │ │ │ ├── JSAnimationTimelineCustom.cpp │ │ │ ├── JSAttrCustom.cpp │ │ │ ├── JSAudioNodeCustom.cpp │ │ │ ├── JSAudioTrackCustom.cpp │ │ │ ├── JSAudioTrackListCustom.cpp │ │ │ ├── JSAuthenticatorResponseCustom.cpp │ │ │ ├── JSBasicCredentialCustom.cpp │ │ │ ├── JSBlobCustom.cpp │ │ │ ├── JSCSSRuleCustom.cpp │ │ │ ├── JSCSSRuleCustom.h │ │ │ ├── JSCSSRuleListCustom.cpp │ │ │ ├── JSCSSStyleDeclarationCustom.cpp │ │ │ ├── JSCSSStyleDeclarationCustom.h │ │ │ ├── JSCallbackData.cpp │ │ │ ├── JSCallbackData.h │ │ │ ├── JSCanvasRenderingContext2DCustom.cpp │ │ │ ├── JSCustomElementInterface.cpp │ │ │ ├── JSCustomElementInterface.h │ │ │ ├── JSCustomElementRegistryCustom.cpp │ │ │ ├── JSCustomEventCustom.cpp │ │ │ ├── JSCustomXPathNSResolver.cpp │ │ │ ├── JSCustomXPathNSResolver.h │ │ │ ├── JSDOMAbstractOperations.h │ │ │ ├── JSDOMAttribute.h │ │ │ ├── JSDOMBinding.h │ │ │ ├── JSDOMBindingInternals.js │ │ │ ├── JSDOMBindingSecurity.cpp │ │ │ ├── JSDOMBindingSecurity.h │ │ │ ├── JSDOMBuiltinConstructor.h │ │ │ ├── JSDOMBuiltinConstructorBase.cpp │ │ │ ├── JSDOMBuiltinConstructorBase.h │ │ │ ├── JSDOMCastedThisErrorBehavior.h │ │ │ ├── JSDOMConstructor.h │ │ │ ├── JSDOMConstructorBase.cpp │ │ │ ├── JSDOMConstructorBase.h │ │ │ ├── JSDOMConstructorNotConstructable.h │ │ │ ├── JSDOMConstructorWithDocument.cpp │ │ │ ├── JSDOMConstructorWithDocument.h │ │ │ ├── JSDOMConvert.h │ │ │ ├── JSDOMConvertAny.h │ │ │ ├── JSDOMConvertBase.h │ │ │ ├── JSDOMConvertBoolean.h │ │ │ ├── JSDOMConvertBufferSource.h │ │ │ ├── JSDOMConvertCallbacks.h │ │ │ ├── JSDOMConvertDate.cpp │ │ │ ├── JSDOMConvertDate.h │ │ │ ├── JSDOMConvertDictionary.h │ │ │ ├── JSDOMConvertEnumeration.h │ │ │ ├── JSDOMConvertEventListener.h │ │ │ ├── JSDOMConvertIndexedDB.h │ │ │ ├── JSDOMConvertInterface.h │ │ │ ├── JSDOMConvertJSON.h │ │ │ ├── JSDOMConvertNull.h │ │ │ ├── JSDOMConvertNullable.h │ │ │ ├── JSDOMConvertNumbers.cpp │ │ │ ├── JSDOMConvertNumbers.h │ │ │ ├── JSDOMConvertObject.h │ │ │ ├── JSDOMConvertPromise.h │ │ │ ├── JSDOMConvertRecord.h │ │ │ ├── JSDOMConvertScheduledAction.h │ │ │ ├── JSDOMConvertSequences.h │ │ │ ├── JSDOMConvertSerializedScriptValue.h │ │ │ ├── JSDOMConvertStrings.cpp │ │ │ ├── JSDOMConvertStrings.h │ │ │ ├── JSDOMConvertUnion.h │ │ │ ├── JSDOMConvertVariadic.h │ │ │ ├── JSDOMConvertWebGL.cpp │ │ │ ├── JSDOMConvertWebGL.h │ │ │ ├── JSDOMConvertXPathNSResolver.h │ │ │ ├── JSDOMExceptionHandling.cpp │ │ │ ├── JSDOMExceptionHandling.h │ │ │ ├── JSDOMGlobalObject.cpp │ │ │ ├── JSDOMGlobalObject.h │ │ │ ├── JSDOMGlobalObjectTask.cpp │ │ │ ├── JSDOMGlobalObjectTask.h │ │ │ ├── JSDOMGuardedObject.cpp │ │ │ ├── JSDOMGuardedObject.h │ │ │ ├── JSDOMIterator.cpp │ │ │ ├── JSDOMIterator.h │ │ │ ├── JSDOMMapLike.cpp │ │ │ ├── JSDOMMapLike.h │ │ │ ├── JSDOMNamedConstructor.h │ │ │ ├── JSDOMOperation.h │ │ │ ├── JSDOMOperationReturningPromise.h │ │ │ ├── JSDOMPromise.cpp │ │ │ ├── JSDOMPromise.h │ │ │ ├── JSDOMPromiseDeferred.cpp │ │ │ ├── JSDOMPromiseDeferred.h │ │ │ ├── JSDOMQuadCustom.cpp │ │ │ ├── JSDOMWindowBase.cpp │ │ │ ├── JSDOMWindowBase.h │ │ │ ├── JSDOMWindowCustom.cpp │ │ │ ├── JSDOMWindowCustom.h │ │ │ ├── JSDOMWindowProperties.cpp │ │ │ ├── JSDOMWindowProperties.h │ │ │ ├── JSDOMWrapper.cpp │ │ │ ├── JSDOMWrapper.h │ │ │ ├── JSDOMWrapperCache.cpp │ │ │ ├── JSDOMWrapperCache.h │ │ │ ├── JSDeprecatedCSSOMValueCustom.cpp │ │ │ ├── JSDocumentCustom.cpp │ │ │ ├── JSDocumentCustom.h │ │ │ ├── JSDocumentFragmentCustom.cpp │ │ │ ├── JSElementCustom.cpp │ │ │ ├── JSElementCustom.h │ │ │ ├── JSErrorEventCustom.cpp │ │ │ ├── JSErrorHandler.cpp │ │ │ ├── JSErrorHandler.h │ │ │ ├── JSEventCustom.cpp │ │ │ ├── JSEventCustom.h │ │ │ ├── JSEventListener.cpp │ │ │ ├── JSEventListener.h │ │ │ ├── JSEventTargetCustom.cpp │ │ │ ├── JSEventTargetCustom.h │ │ │ ├── JSExecState.cpp │ │ │ ├── JSExecState.h │ │ │ ├── JSExecStateInstrumentation.h │ │ │ ├── JSExtendableMessageEventCustom.cpp │ │ │ ├── JSFetchEventCustom.cpp │ │ │ ├── JSFileSystemEntryCustom.cpp │ │ │ ├── JSHTMLCollectionCustom.cpp │ │ │ ├── JSHTMLDocumentCustom.cpp │ │ │ ├── JSHTMLElementCustom.cpp │ │ │ ├── JSHTMLTemplateElementCustom.cpp │ │ │ ├── JSHistoryCustom.cpp │ │ │ ├── JSIDBCursorCustom.cpp │ │ │ ├── JSIDBCursorWithValueCustom.cpp │ │ │ ├── JSIDBIndexCustom.cpp │ │ │ ├── JSIDBObjectStoreCustom.cpp │ │ │ ├── JSIDBRequestCustom.cpp │ │ │ ├── JSIDBTransactionCustom.cpp │ │ │ ├── JSImageDataCustom.cpp │ │ │ ├── JSIntersectionObserverEntryCustom.cpp │ │ │ ├── JSLazyEventListener.cpp │ │ │ ├── JSLazyEventListener.h │ │ │ ├── JSLocationCustom.cpp │ │ │ ├── JSMediaCapabilitiesCustom.h │ │ │ ├── JSMediaListCustom.h │ │ │ ├── JSMediaStreamTrackCustom.cpp │ │ │ ├── JSMessageChannelCustom.cpp │ │ │ ├── JSMessageEventCustom.cpp │ │ │ ├── JSMessagePortCustom.cpp │ │ │ ├── JSMicrotaskCallback.h │ │ │ ├── JSMutationObserverCustom.cpp │ │ │ ├── JSMutationRecordCustom.cpp │ │ │ ├── JSNavigatorCustom.cpp │ │ │ ├── JSNodeCustom.cpp │ │ │ ├── JSNodeCustom.h │ │ │ ├── JSNodeIteratorCustom.cpp │ │ │ ├── JSNodeListCustom.cpp │ │ │ ├── JSNodeListCustom.h │ │ │ ├── JSOffscreenCanvasRenderingContext2DCustom.cpp │ │ │ ├── JSPaintRenderingContext2DCustom.cpp │ │ │ ├── JSPaintWorkletGlobalScopeCustom.cpp │ │ │ ├── JSPaymentMethodChangeEventCustom.cpp │ │ │ ├── JSPaymentResponseCustom.cpp │ │ │ ├── JSPerformanceEntryCustom.cpp │ │ │ ├── JSPerformanceObserverCustom.cpp │ │ │ ├── JSPluginElementFunctions.cpp │ │ │ ├── JSPluginElementFunctions.h │ │ │ ├── JSPopStateEventCustom.cpp │ │ │ ├── JSPromiseRejectionEventCustom.cpp │ │ │ ├── JSReadableStreamSourceCustom.cpp │ │ │ ├── JSRemoteDOMWindowBase.cpp │ │ │ ├── JSRemoteDOMWindowBase.h │ │ │ ├── JSRemoteDOMWindowCustom.cpp │ │ │ ├── JSResizeObserverEntryCustom.cpp │ │ │ ├── JSSVGPathSegCustom.cpp │ │ │ ├── JSSVGViewSpecCustom.cpp │ │ │ ├── JSServiceWorkerClientCustom.cpp │ │ │ ├── JSServiceWorkerGlobalScopeCustom.cpp │ │ │ ├── JSStyleSheetCustom.cpp │ │ │ ├── JSStyleSheetCustom.h │ │ │ ├── JSTextCustom.cpp │ │ │ ├── JSTextTrackCueCustom.cpp │ │ │ ├── JSTextTrackCustom.cpp │ │ │ ├── JSTextTrackListCustom.cpp │ │ │ ├── JSTrackCustom.cpp │ │ │ ├── JSTrackCustom.h │ │ │ ├── JSTreeWalkerCustom.cpp │ │ │ ├── JSTypedOMCSSStyleValueCustom.cpp │ │ │ ├── JSUndoItemCustom.cpp │ │ │ ├── JSValueInWrappedObject.h │ │ │ ├── JSVideoTrackCustom.cpp │ │ │ ├── JSVideoTrackListCustom.cpp │ │ │ ├── JSWebAnimationCustom.cpp │ │ │ ├── JSWebGL2RenderingContextCustom.cpp │ │ │ ├── JSWebGLRenderingContextCustom.cpp │ │ │ ├── JSWindowProxy.cpp │ │ │ ├── JSWindowProxy.h │ │ │ ├── JSWorkerGlobalScopeBase.cpp │ │ │ ├── JSWorkerGlobalScopeBase.h │ │ │ ├── JSWorkerGlobalScopeCustom.cpp │ │ │ ├── JSWorkerNavigatorCustom.cpp │ │ │ ├── JSWorkletGlobalScopeBase.cpp │ │ │ ├── JSWorkletGlobalScopeBase.h │ │ │ ├── JSXMLDocumentCustom.cpp │ │ │ ├── JSXMLHttpRequestCustom.cpp │ │ │ ├── JSXPathNSResolverCustom.cpp │ │ │ ├── JSXPathResultCustom.cpp │ │ │ ├── ModuleFetchFailureKind.h │ │ │ ├── ReadableStream.cpp │ │ │ ├── ReadableStream.h │ │ │ ├── ReadableStreamDefaultController.cpp │ │ │ ├── ReadableStreamDefaultController.h │ │ │ ├── ScheduledAction.cpp │ │ │ ├── ScheduledAction.h │ │ │ ├── ScriptCachedFrameData.cpp │ │ │ ├── ScriptCachedFrameData.h │ │ │ ├── ScriptController.cpp │ │ │ ├── ScriptController.h │ │ │ ├── ScriptControllerMac.mm │ │ │ ├── ScriptModuleLoader.cpp │ │ │ ├── ScriptModuleLoader.h │ │ │ ├── ScriptSourceCode.h │ │ │ ├── ScriptState.cpp │ │ │ ├── ScriptState.h │ │ │ ├── ScriptWrappable.h │ │ │ ├── ScriptWrappableInlines.h │ │ │ ├── SerializedScriptValue.cpp │ │ │ ├── SerializedScriptValue.h │ │ │ ├── StringAdaptors.h │ │ │ ├── StructuredClone.cpp │ │ │ ├── StructuredClone.h │ │ │ ├── WebCoreBuiltinNames.h │ │ │ ├── WebCoreJSClientData.cpp │ │ │ ├── WebCoreJSClientData.h │ │ │ ├── WebCoreTypedArrayController.cpp │ │ │ ├── WebCoreTypedArrayController.h │ │ │ ├── WindowProxy.cpp │ │ │ ├── WindowProxy.h │ │ │ ├── WorkerScriptController.cpp │ │ │ └── WorkerScriptController.h │ │ └── scripts │ │ │ ├── CodeGenerator.pm │ │ │ ├── CodeGeneratorJS.pm │ │ │ ├── Hasher.pm │ │ │ ├── IDLAttributes.json │ │ │ ├── IDLParser.pm │ │ │ ├── InFilesCompiler.pm │ │ │ ├── InFilesParser.pm │ │ │ ├── StaticString.pm │ │ │ ├── generate-bindings-all.pl │ │ │ ├── generate-bindings.pl │ │ │ ├── preprocess-idls.pl │ │ │ ├── preprocessor.pm │ │ │ └── test │ │ │ ├── JS │ │ │ ├── JSInterfaceName.cpp │ │ │ ├── JSInterfaceName.h │ │ │ ├── JSMapLike.cpp │ │ │ ├── JSMapLike.h │ │ │ ├── JSReadOnlyMapLike.cpp │ │ │ ├── JSReadOnlyMapLike.h │ │ │ ├── JSTestActiveDOMObject.cpp │ │ │ ├── JSTestActiveDOMObject.h │ │ │ ├── JSTestCEReactions.cpp │ │ │ ├── JSTestCEReactions.h │ │ │ ├── JSTestCEReactionsStringifier.cpp │ │ │ ├── JSTestCEReactionsStringifier.h │ │ │ ├── JSTestCallTracer.cpp │ │ │ ├── JSTestCallTracer.h │ │ │ ├── JSTestCallbackFunction.cpp │ │ │ ├── JSTestCallbackFunction.h │ │ │ ├── JSTestCallbackFunctionRethrow.cpp │ │ │ ├── JSTestCallbackFunctionRethrow.h │ │ │ ├── JSTestCallbackFunctionWithThisObject.cpp │ │ │ ├── JSTestCallbackFunctionWithThisObject.h │ │ │ ├── JSTestCallbackFunctionWithTypedefs.cpp │ │ │ ├── JSTestCallbackFunctionWithTypedefs.h │ │ │ ├── JSTestCallbackInterface.cpp │ │ │ ├── JSTestCallbackInterface.h │ │ │ ├── JSTestClassWithJSBuiltinConstructor.cpp │ │ │ ├── JSTestClassWithJSBuiltinConstructor.h │ │ │ ├── JSTestDOMJIT.cpp │ │ │ ├── JSTestDOMJIT.h │ │ │ ├── JSTestDerivedDictionary.cpp │ │ │ ├── JSTestDerivedDictionary.h │ │ │ ├── JSTestEnabledBySetting.cpp │ │ │ ├── JSTestEnabledBySetting.h │ │ │ ├── JSTestEnabledForContext.cpp │ │ │ ├── JSTestEnabledForContext.h │ │ │ ├── JSTestEventConstructor.cpp │ │ │ ├── JSTestEventConstructor.h │ │ │ ├── JSTestEventTarget.cpp │ │ │ ├── JSTestEventTarget.h │ │ │ ├── JSTestException.cpp │ │ │ ├── JSTestException.h │ │ │ ├── JSTestGenerateIsReachable.cpp │ │ │ ├── JSTestGenerateIsReachable.h │ │ │ ├── JSTestGlobalObject.cpp │ │ │ ├── JSTestGlobalObject.h │ │ │ ├── JSTestImplements.cpp │ │ │ ├── JSTestImplements.h │ │ │ ├── JSTestIndexedSetterNoIdentifier.cpp │ │ │ ├── JSTestIndexedSetterNoIdentifier.h │ │ │ ├── JSTestIndexedSetterThrowingException.cpp │ │ │ ├── JSTestIndexedSetterThrowingException.h │ │ │ ├── JSTestIndexedSetterWithIdentifier.cpp │ │ │ ├── JSTestIndexedSetterWithIdentifier.h │ │ │ ├── JSTestInheritedDictionary.cpp │ │ │ ├── JSTestInheritedDictionary.h │ │ │ ├── JSTestInterface.cpp │ │ │ ├── JSTestInterface.h │ │ │ ├── JSTestInterfaceLeadingUnderscore.cpp │ │ │ ├── JSTestInterfaceLeadingUnderscore.h │ │ │ ├── JSTestIterable.cpp │ │ │ ├── JSTestIterable.h │ │ │ ├── JSTestJSBuiltinConstructor.cpp │ │ │ ├── JSTestJSBuiltinConstructor.h │ │ │ ├── JSTestMediaQueryListListener.cpp │ │ │ ├── JSTestMediaQueryListListener.h │ │ │ ├── JSTestNamedAndIndexedSetterNoIdentifier.cpp │ │ │ ├── JSTestNamedAndIndexedSetterNoIdentifier.h │ │ │ ├── JSTestNamedAndIndexedSetterThrowingException.cpp │ │ │ ├── JSTestNamedAndIndexedSetterThrowingException.h │ │ │ ├── JSTestNamedAndIndexedSetterWithIdentifier.cpp │ │ │ ├── JSTestNamedAndIndexedSetterWithIdentifier.h │ │ │ ├── JSTestNamedConstructor.cpp │ │ │ ├── JSTestNamedConstructor.h │ │ │ ├── JSTestNamedDeleterNoIdentifier.cpp │ │ │ ├── JSTestNamedDeleterNoIdentifier.h │ │ │ ├── JSTestNamedDeleterThrowingException.cpp │ │ │ ├── JSTestNamedDeleterThrowingException.h │ │ │ ├── JSTestNamedDeleterWithIdentifier.cpp │ │ │ ├── JSTestNamedDeleterWithIdentifier.h │ │ │ ├── JSTestNamedDeleterWithIndexedGetter.cpp │ │ │ ├── JSTestNamedDeleterWithIndexedGetter.h │ │ │ ├── JSTestNamedGetterCallWith.cpp │ │ │ ├── JSTestNamedGetterCallWith.h │ │ │ ├── JSTestNamedGetterNoIdentifier.cpp │ │ │ ├── JSTestNamedGetterNoIdentifier.h │ │ │ ├── JSTestNamedGetterWithIdentifier.cpp │ │ │ ├── JSTestNamedGetterWithIdentifier.h │ │ │ ├── JSTestNamedSetterNoIdentifier.cpp │ │ │ ├── JSTestNamedSetterNoIdentifier.h │ │ │ ├── JSTestNamedSetterThrowingException.cpp │ │ │ ├── JSTestNamedSetterThrowingException.h │ │ │ ├── JSTestNamedSetterWithIdentifier.cpp │ │ │ ├── JSTestNamedSetterWithIdentifier.h │ │ │ ├── JSTestNamedSetterWithIndexedGetter.cpp │ │ │ ├── JSTestNamedSetterWithIndexedGetter.h │ │ │ ├── JSTestNamedSetterWithIndexedGetterAndSetter.cpp │ │ │ ├── JSTestNamedSetterWithIndexedGetterAndSetter.h │ │ │ ├── JSTestNamedSetterWithOverrideBuiltins.cpp │ │ │ ├── JSTestNamedSetterWithOverrideBuiltins.h │ │ │ ├── JSTestNamedSetterWithUnforgableProperties.cpp │ │ │ ├── JSTestNamedSetterWithUnforgableProperties.h │ │ │ ├── JSTestNamedSetterWithUnforgablePropertiesAndOverrideBuiltins.cpp │ │ │ ├── JSTestNamedSetterWithUnforgablePropertiesAndOverrideBuiltins.h │ │ │ ├── JSTestNode.cpp │ │ │ ├── JSTestNode.h │ │ │ ├── JSTestObj.cpp │ │ │ ├── JSTestObj.h │ │ │ ├── JSTestOverloadedConstructors.cpp │ │ │ ├── JSTestOverloadedConstructors.h │ │ │ ├── JSTestOverloadedConstructorsWithSequence.cpp │ │ │ ├── JSTestOverloadedConstructorsWithSequence.h │ │ │ ├── JSTestOverrideBuiltins.cpp │ │ │ ├── JSTestOverrideBuiltins.h │ │ │ ├── JSTestPluginInterface.cpp │ │ │ ├── JSTestPluginInterface.h │ │ │ ├── JSTestPromiseRejectionEvent.cpp │ │ │ ├── JSTestPromiseRejectionEvent.h │ │ │ ├── JSTestSerialization.cpp │ │ │ ├── JSTestSerialization.h │ │ │ ├── JSTestSerializationIndirectInheritance.cpp │ │ │ ├── JSTestSerializationIndirectInheritance.h │ │ │ ├── JSTestSerializationInherit.cpp │ │ │ ├── JSTestSerializationInherit.h │ │ │ ├── JSTestSerializationInheritFinal.cpp │ │ │ ├── JSTestSerializationInheritFinal.h │ │ │ ├── JSTestSerializedScriptValueInterface.cpp │ │ │ ├── JSTestSerializedScriptValueInterface.h │ │ │ ├── JSTestStandaloneDictionary.cpp │ │ │ ├── JSTestStandaloneDictionary.h │ │ │ ├── JSTestStandaloneEnumeration.cpp │ │ │ ├── JSTestStandaloneEnumeration.h │ │ │ ├── JSTestStringifier.cpp │ │ │ ├── JSTestStringifier.h │ │ │ ├── JSTestStringifierAnonymousOperation.cpp │ │ │ ├── JSTestStringifierAnonymousOperation.h │ │ │ ├── JSTestStringifierNamedOperation.cpp │ │ │ ├── JSTestStringifierNamedOperation.h │ │ │ ├── JSTestStringifierOperationImplementedAs.cpp │ │ │ ├── JSTestStringifierOperationImplementedAs.h │ │ │ ├── JSTestStringifierOperationNamedToString.cpp │ │ │ ├── JSTestStringifierOperationNamedToString.h │ │ │ ├── JSTestStringifierReadOnlyAttribute.cpp │ │ │ ├── JSTestStringifierReadOnlyAttribute.h │ │ │ ├── JSTestStringifierReadWriteAttribute.cpp │ │ │ ├── JSTestStringifierReadWriteAttribute.h │ │ │ ├── JSTestSupplemental.cpp │ │ │ ├── JSTestSupplemental.h │ │ │ ├── JSTestTypedefs.cpp │ │ │ ├── JSTestTypedefs.h │ │ │ ├── JSTestVoidCallbackFunction.cpp │ │ │ └── JSTestVoidCallbackFunction.h │ │ │ ├── TestCEReactions.idl │ │ │ ├── TestCEReactionsStringifier.idl │ │ │ ├── TestCallTracer.idl │ │ │ ├── TestCallbackFunction.idl │ │ │ ├── TestCallbackFunctionRethrow.idl │ │ │ ├── TestCallbackFunctionWithThisObject.idl │ │ │ ├── TestCallbackFunctionWithTypedefs.idl │ │ │ ├── TestCallbackInterface.idl │ │ │ ├── TestClassWithJSBuiltinConstructor.idl │ │ │ ├── TestDOMJIT.idl │ │ │ ├── TestDerivedDictionary.idl │ │ │ ├── TestDomainSecurity.idl │ │ │ ├── TestEnabledBySetting.idl │ │ │ ├── TestEnabledForContext.idl │ │ │ ├── TestEventConstructor.idl │ │ │ ├── TestEventTarget.idl │ │ │ ├── TestException.idl │ │ │ ├── TestGenerateIsReachable.idl │ │ │ ├── TestGlobalObject.idl │ │ │ ├── TestImplements.idl │ │ │ ├── TestIndexedSetterNoIdentifier.idl │ │ │ ├── TestIndexedSetterThrowingException.idl │ │ │ ├── TestIndexedSetterWithIdentifier.idl │ │ │ ├── TestInheritedDictionary.idl │ │ │ ├── TestInterface.idl │ │ │ ├── TestInterfaceLeadingUnderscore.idl │ │ │ ├── TestIterable.idl │ │ │ ├── TestJSBuiltinConstructor.idl │ │ │ ├── TestMapLike.idl │ │ │ ├── TestMediaQueryListListener.idl │ │ │ ├── TestNamedAndIndexedSetterNoIdentifier.idl │ │ │ ├── TestNamedAndIndexedSetterThrowingException.idl │ │ │ ├── TestNamedAndIndexedSetterWithIdentifier.idl │ │ │ ├── TestNamedConstructor.idl │ │ │ ├── TestNamedDeleterNoIdentifier.idl │ │ │ ├── TestNamedDeleterThrowingException.idl │ │ │ ├── TestNamedDeleterWithIdentifier.idl │ │ │ ├── TestNamedDeleterWithIndexedGetter.idl │ │ │ ├── TestNamedGetterCallWith.idl │ │ │ ├── TestNamedGetterNoIdentifier.idl │ │ │ ├── TestNamedGetterWithIdentifier.idl │ │ │ ├── TestNamedSetterNoIdentifier.idl │ │ │ ├── TestNamedSetterThrowingException.idl │ │ │ ├── TestNamedSetterWithIdentifier.idl │ │ │ ├── TestNamedSetterWithIndexedGetter.idl │ │ │ ├── TestNamedSetterWithIndexedGetterAndSetter.idl │ │ │ ├── TestNamedSetterWithOverrideBuiltins.idl │ │ │ ├── TestNamedSetterWithUnforgableProperties.idl │ │ │ ├── TestNamedSetterWithUnforgablePropertiesAndOverrideBuiltins.idl │ │ │ ├── TestNode.idl │ │ │ ├── TestObj.idl │ │ │ ├── TestOverloadedConstructors.idl │ │ │ ├── TestOverloadedConstructorsWithSequence.idl │ │ │ ├── TestOverrideBuiltins.idl │ │ │ ├── TestPluginInterface.idl │ │ │ ├── TestPromiseRejectionEvent.idl │ │ │ ├── TestReadOnlyMapLike.idl │ │ │ ├── TestReportExtraMemoryCost.idl │ │ │ ├── TestSerialization.idl │ │ │ ├── TestSerializationIndirectInheritance.idl │ │ │ ├── TestSerializationInherit.idl │ │ │ ├── TestSerializationInheritFinal.idl │ │ │ ├── TestSerializedScriptValueInterface.idl │ │ │ ├── TestStandaloneDictionary.idl │ │ │ ├── TestStandaloneEnumeration.idl │ │ │ ├── TestStringifier.idl │ │ │ ├── TestStringifierAnonymousOperation.idl │ │ │ ├── TestStringifierNamedOperation.idl │ │ │ ├── TestStringifierOperationImplementedAs.idl │ │ │ ├── TestStringifierOperationNamedToString.idl │ │ │ ├── TestStringifierReadOnlyAttribute.idl │ │ │ ├── TestStringifierReadWriteAttribute.idl │ │ │ ├── TestSupplemental.idl │ │ │ ├── TestTypedefs.idl │ │ │ └── TestVoidCallbackFunction.idl │ ├── bridge │ │ ├── Bridge.h │ │ ├── IdentifierRep.cpp │ │ ├── IdentifierRep.h │ │ ├── NP_jsobject.cpp │ │ ├── NP_jsobject.h │ │ ├── c │ │ │ ├── CRuntimeObject.cpp │ │ │ ├── CRuntimeObject.h │ │ │ ├── c_class.cpp │ │ │ ├── c_class.h │ │ │ ├── c_instance.cpp │ │ │ ├── c_instance.h │ │ │ ├── c_runtime.cpp │ │ │ ├── c_runtime.h │ │ │ ├── c_utility.cpp │ │ │ └── c_utility.h │ │ ├── jsc │ │ │ ├── BridgeJSC.cpp │ │ │ └── BridgeJSC.h │ │ ├── make_testbindings │ │ ├── npruntime.cpp │ │ ├── npruntime_impl.h │ │ ├── npruntime_internal.h │ │ ├── npruntime_priv.h │ │ ├── objc │ │ │ ├── ObjCRuntimeObject.h │ │ │ ├── ObjCRuntimeObject.mm │ │ │ ├── WebScriptObject.h │ │ │ ├── WebScriptObject.mm │ │ │ ├── WebScriptObjectPrivate.h │ │ │ ├── WebScriptObjectProtocol.h │ │ │ ├── objc_class.h │ │ │ ├── objc_class.mm │ │ │ ├── objc_header.h │ │ │ ├── objc_instance.h │ │ │ ├── objc_instance.mm │ │ │ ├── objc_runtime.h │ │ │ ├── objc_runtime.mm │ │ │ ├── objc_utility.h │ │ │ └── objc_utility.mm │ │ ├── runtime_array.cpp │ │ ├── runtime_array.h │ │ ├── runtime_method.cpp │ │ ├── runtime_method.h │ │ ├── runtime_object.cpp │ │ ├── runtime_object.h │ │ ├── runtime_root.cpp │ │ ├── runtime_root.h │ │ ├── test.js │ │ ├── testC.js │ │ ├── testM.js │ │ ├── testbindings.cpp │ │ └── testbindings.mm │ ├── config.h │ ├── contentextensions │ │ ├── CombinedFiltersAlphabet.cpp │ │ ├── CombinedFiltersAlphabet.h │ │ ├── CombinedURLFilters.cpp │ │ ├── CombinedURLFilters.h │ │ ├── CompiledContentExtension.cpp │ │ ├── CompiledContentExtension.h │ │ ├── ContentExtension.cpp │ │ ├── ContentExtension.h │ │ ├── ContentExtensionActions.h │ │ ├── ContentExtensionCompiler.cpp │ │ ├── ContentExtensionCompiler.h │ │ ├── ContentExtensionError.cpp │ │ ├── ContentExtensionError.h │ │ ├── ContentExtensionParser.cpp │ │ ├── ContentExtensionParser.h │ │ ├── ContentExtensionRule.cpp │ │ ├── ContentExtensionRule.h │ │ ├── ContentExtensionStyleSheet.cpp │ │ ├── ContentExtensionStyleSheet.h │ │ ├── ContentExtensionsBackend.cpp │ │ ├── ContentExtensionsBackend.h │ │ ├── ContentExtensionsDebugging.h │ │ ├── ContentRuleListResults.h │ │ ├── DFA.cpp │ │ ├── DFA.h │ │ ├── DFABytecode.h │ │ ├── DFABytecodeCompiler.cpp │ │ ├── DFABytecodeCompiler.h │ │ ├── DFABytecodeInterpreter.cpp │ │ ├── DFABytecodeInterpreter.h │ │ ├── DFACombiner.cpp │ │ ├── DFACombiner.h │ │ ├── DFAMinimizer.cpp │ │ ├── DFAMinimizer.h │ │ ├── DFANode.cpp │ │ ├── DFANode.h │ │ ├── HashableActionList.h │ │ ├── ImmutableNFA.h │ │ ├── ImmutableNFANodeBuilder.h │ │ ├── MutableRange.h │ │ ├── MutableRangeList.h │ │ ├── NFA.cpp │ │ ├── NFA.h │ │ ├── NFANode.h │ │ ├── NFAToDFA.cpp │ │ ├── NFAToDFA.h │ │ ├── Term.h │ │ ├── URLFilterParser.cpp │ │ └── URLFilterParser.h │ ├── crypto │ │ ├── CommonCryptoUtilities.cpp │ │ ├── CommonCryptoUtilities.h │ │ ├── CryptoAlgorithm.cpp │ │ ├── CryptoAlgorithm.h │ │ ├── CryptoAlgorithmIdentifier.h │ │ ├── CryptoAlgorithmParameters.h │ │ ├── CryptoAlgorithmParameters.idl │ │ ├── CryptoAlgorithmRegistry.cpp │ │ ├── CryptoAlgorithmRegistry.h │ │ ├── CryptoKey.cpp │ │ ├── CryptoKey.h │ │ ├── CryptoKey.idl │ │ ├── CryptoKeyFormat.h │ │ ├── CryptoKeyPair.h │ │ ├── CryptoKeyPair.idl │ │ ├── CryptoKeyType.h │ │ ├── CryptoKeyUsage.h │ │ ├── CryptoKeyUsage.idl │ │ ├── JsonWebKey.h │ │ ├── JsonWebKey.idl │ │ ├── RsaOtherPrimesInfo.h │ │ ├── RsaOtherPrimesInfo.idl │ │ ├── SerializedCryptoKeyWrap.h │ │ ├── SubtleCrypto.cpp │ │ ├── SubtleCrypto.h │ │ ├── SubtleCrypto.idl │ │ ├── algorithms │ │ │ ├── CryptoAlgorithmAES_CBC.cpp │ │ │ ├── CryptoAlgorithmAES_CBC.h │ │ │ ├── CryptoAlgorithmAES_CFB.cpp │ │ │ ├── CryptoAlgorithmAES_CFB.h │ │ │ ├── CryptoAlgorithmAES_CTR.cpp │ │ │ ├── CryptoAlgorithmAES_CTR.h │ │ │ ├── CryptoAlgorithmAES_GCM.cpp │ │ │ ├── CryptoAlgorithmAES_GCM.h │ │ │ ├── CryptoAlgorithmAES_KW.cpp │ │ │ ├── CryptoAlgorithmAES_KW.h │ │ │ ├── CryptoAlgorithmECDH.cpp │ │ │ ├── CryptoAlgorithmECDH.h │ │ │ ├── CryptoAlgorithmECDSA.cpp │ │ │ ├── CryptoAlgorithmECDSA.h │ │ │ ├── CryptoAlgorithmHKDF.cpp │ │ │ ├── CryptoAlgorithmHKDF.h │ │ │ ├── CryptoAlgorithmHMAC.cpp │ │ │ ├── CryptoAlgorithmHMAC.h │ │ │ ├── CryptoAlgorithmPBKDF2.cpp │ │ │ ├── CryptoAlgorithmPBKDF2.h │ │ │ ├── CryptoAlgorithmRSAES_PKCS1_v1_5.cpp │ │ │ ├── CryptoAlgorithmRSAES_PKCS1_v1_5.h │ │ │ ├── CryptoAlgorithmRSASSA_PKCS1_v1_5.cpp │ │ │ ├── CryptoAlgorithmRSASSA_PKCS1_v1_5.h │ │ │ ├── CryptoAlgorithmRSA_OAEP.cpp │ │ │ ├── CryptoAlgorithmRSA_OAEP.h │ │ │ ├── CryptoAlgorithmRSA_PSS.cpp │ │ │ ├── CryptoAlgorithmRSA_PSS.h │ │ │ ├── CryptoAlgorithmSHA1.cpp │ │ │ ├── CryptoAlgorithmSHA1.h │ │ │ ├── CryptoAlgorithmSHA224.cpp │ │ │ ├── CryptoAlgorithmSHA224.h │ │ │ ├── CryptoAlgorithmSHA256.cpp │ │ │ ├── CryptoAlgorithmSHA256.h │ │ │ ├── CryptoAlgorithmSHA384.cpp │ │ │ ├── CryptoAlgorithmSHA384.h │ │ │ ├── CryptoAlgorithmSHA512.cpp │ │ │ └── CryptoAlgorithmSHA512.h │ │ ├── gcrypt │ │ │ ├── CryptoAlgorithmAES_CBCGCrypt.cpp │ │ │ ├── CryptoAlgorithmAES_CFBGCrypt.cpp │ │ │ ├── CryptoAlgorithmAES_CTRGCrypt.cpp │ │ │ ├── CryptoAlgorithmAES_GCMGCrypt.cpp │ │ │ ├── CryptoAlgorithmAES_KWGCrypt.cpp │ │ │ ├── CryptoAlgorithmECDHGCrypt.cpp │ │ │ ├── CryptoAlgorithmECDSAGCrypt.cpp │ │ │ ├── CryptoAlgorithmHKDFGCrypt.cpp │ │ │ ├── CryptoAlgorithmHMACGCrypt.cpp │ │ │ ├── CryptoAlgorithmPBKDF2GCrypt.cpp │ │ │ ├── CryptoAlgorithmRSAES_PKCS1_v1_5GCrypt.cpp │ │ │ ├── CryptoAlgorithmRSASSA_PKCS1_v1_5GCrypt.cpp │ │ │ ├── CryptoAlgorithmRSA_OAEPGCrypt.cpp │ │ │ ├── CryptoAlgorithmRSA_PSSGCrypt.cpp │ │ │ ├── CryptoAlgorithmRegistryGCrypt.cpp │ │ │ ├── CryptoKeyECGCrypt.cpp │ │ │ ├── CryptoKeyRSAGCrypt.cpp │ │ │ ├── GCryptUtilities.cpp │ │ │ ├── GCryptUtilities.h │ │ │ └── SerializedCryptoKeyWrapGCrypt.cpp │ │ ├── keys │ │ │ ├── CryptoAesKeyAlgorithm.h │ │ │ ├── CryptoAesKeyAlgorithm.idl │ │ │ ├── CryptoEcKeyAlgorithm.h │ │ │ ├── CryptoEcKeyAlgorithm.idl │ │ │ ├── CryptoHmacKeyAlgorithm.h │ │ │ ├── CryptoHmacKeyAlgorithm.idl │ │ │ ├── CryptoKeyAES.cpp │ │ │ ├── CryptoKeyAES.h │ │ │ ├── CryptoKeyAlgorithm.h │ │ │ ├── CryptoKeyAlgorithm.idl │ │ │ ├── CryptoKeyEC.cpp │ │ │ ├── CryptoKeyEC.h │ │ │ ├── CryptoKeyHMAC.cpp │ │ │ ├── CryptoKeyHMAC.h │ │ │ ├── CryptoKeyRSA.cpp │ │ │ ├── CryptoKeyRSA.h │ │ │ ├── CryptoKeyRSAComponents.cpp │ │ │ ├── CryptoKeyRSAComponents.h │ │ │ ├── CryptoKeyRaw.cpp │ │ │ ├── CryptoKeyRaw.h │ │ │ ├── CryptoRsaHashedKeyAlgorithm.h │ │ │ ├── CryptoRsaHashedKeyAlgorithm.idl │ │ │ ├── CryptoRsaKeyAlgorithm.h │ │ │ └── CryptoRsaKeyAlgorithm.idl │ │ ├── mac │ │ │ ├── CommonCryptoDERUtilities.cpp │ │ │ ├── CommonCryptoDERUtilities.h │ │ │ ├── CryptoAlgorithmAES_CBCMac.cpp │ │ │ ├── CryptoAlgorithmAES_CFBMac.cpp │ │ │ ├── CryptoAlgorithmAES_CTRMac.cpp │ │ │ ├── CryptoAlgorithmAES_GCMMac.cpp │ │ │ ├── CryptoAlgorithmAES_KWMac.cpp │ │ │ ├── CryptoAlgorithmECDHMac.cpp │ │ │ ├── CryptoAlgorithmECDSAMac.cpp │ │ │ ├── CryptoAlgorithmHKDFMac.cpp │ │ │ ├── CryptoAlgorithmHMACMac.cpp │ │ │ ├── CryptoAlgorithmPBKDF2Mac.cpp │ │ │ ├── CryptoAlgorithmRSAES_PKCS1_v1_5Mac.cpp │ │ │ ├── CryptoAlgorithmRSASSA_PKCS1_v1_5Mac.cpp │ │ │ ├── CryptoAlgorithmRSA_OAEPMac.cpp │ │ │ ├── CryptoAlgorithmRSA_PSSMac.cpp │ │ │ ├── CryptoAlgorithmRegistryMac.cpp │ │ │ ├── CryptoDigestAlgorithm.h │ │ │ ├── CryptoKeyECMac.cpp │ │ │ ├── CryptoKeyMac.cpp │ │ │ ├── CryptoKeyRSAMac.cpp │ │ │ └── SerializedCryptoKeyWrapMac.mm │ │ └── parameters │ │ │ ├── AesCbcCfbParams.idl │ │ │ ├── AesCtrParams.idl │ │ │ ├── AesGcmParams.idl │ │ │ ├── AesKeyParams.idl │ │ │ ├── CryptoAlgorithmAesCbcCfbParams.h │ │ │ ├── CryptoAlgorithmAesCtrParams.h │ │ │ ├── CryptoAlgorithmAesGcmParams.h │ │ │ ├── CryptoAlgorithmAesKeyParams.h │ │ │ ├── CryptoAlgorithmEcKeyParams.h │ │ │ ├── CryptoAlgorithmEcdhKeyDeriveParams.h │ │ │ ├── CryptoAlgorithmEcdsaParams.h │ │ │ ├── CryptoAlgorithmHkdfParams.h │ │ │ ├── CryptoAlgorithmHmacKeyParams.h │ │ │ ├── CryptoAlgorithmPbkdf2Params.h │ │ │ ├── CryptoAlgorithmRsaHashedImportParams.h │ │ │ ├── CryptoAlgorithmRsaHashedKeyGenParams.h │ │ │ ├── CryptoAlgorithmRsaKeyGenParams.h │ │ │ ├── CryptoAlgorithmRsaOaepParams.h │ │ │ ├── CryptoAlgorithmRsaPssParams.h │ │ │ ├── EcKeyParams.idl │ │ │ ├── EcdhKeyDeriveParams.idl │ │ │ ├── EcdsaParams.idl │ │ │ ├── HkdfParams.idl │ │ │ ├── HmacKeyParams.idl │ │ │ ├── Pbkdf2Params.idl │ │ │ ├── RsaHashedImportParams.idl │ │ │ ├── RsaHashedKeyGenParams.idl │ │ │ ├── RsaKeyGenParams.idl │ │ │ ├── RsaOaepParams.idl │ │ │ └── RsaPssParams.idl │ ├── css │ │ ├── BasicShapeFunctions.cpp │ │ ├── BasicShapeFunctions.h │ │ ├── CSSAspectRatioValue.cpp │ │ ├── CSSAspectRatioValue.h │ │ ├── CSSBasicShapes.cpp │ │ ├── CSSBasicShapes.h │ │ ├── CSSBorderImage.cpp │ │ ├── CSSBorderImage.h │ │ ├── CSSBorderImageSliceValue.cpp │ │ ├── CSSBorderImageSliceValue.h │ │ ├── CSSCalculationValue.cpp │ │ ├── CSSCalculationValue.h │ │ ├── CSSCanvasValue.cpp │ │ ├── CSSCanvasValue.h │ │ ├── CSSComputedStyleDeclaration.cpp │ │ ├── CSSComputedStyleDeclaration.h │ │ ├── CSSContentDistributionValue.cpp │ │ ├── CSSContentDistributionValue.h │ │ ├── CSSCrossfadeValue.cpp │ │ ├── CSSCrossfadeValue.h │ │ ├── CSSCursorImageValue.cpp │ │ ├── CSSCursorImageValue.h │ │ ├── CSSCustomIdentValue.cpp │ │ ├── CSSCustomIdentValue.h │ │ ├── CSSCustomPropertyValue.cpp │ │ ├── CSSCustomPropertyValue.h │ │ ├── CSSDefaultStyleSheets.cpp │ │ ├── CSSDefaultStyleSheets.h │ │ ├── CSSFilterImageValue.cpp │ │ ├── CSSFilterImageValue.h │ │ ├── CSSFontFace.cpp │ │ ├── CSSFontFace.h │ │ ├── CSSFontFaceRule.cpp │ │ ├── CSSFontFaceRule.h │ │ ├── CSSFontFaceRule.idl │ │ ├── CSSFontFaceSet.cpp │ │ ├── CSSFontFaceSet.h │ │ ├── CSSFontFaceSource.cpp │ │ ├── CSSFontFaceSource.h │ │ ├── CSSFontFaceSrcValue.cpp │ │ ├── CSSFontFaceSrcValue.h │ │ ├── CSSFontFamily.h │ │ ├── CSSFontFeatureValue.cpp │ │ ├── CSSFontFeatureValue.h │ │ ├── CSSFontSelector.cpp │ │ ├── CSSFontSelector.h │ │ ├── CSSFontStyleRangeValue.cpp │ │ ├── CSSFontStyleRangeValue.h │ │ ├── CSSFontStyleValue.cpp │ │ ├── CSSFontStyleValue.h │ │ ├── CSSFontValue.cpp │ │ ├── CSSFontValue.h │ │ ├── CSSFontVariationValue.cpp │ │ ├── CSSFontVariationValue.h │ │ ├── CSSFunctionValue.cpp │ │ ├── CSSFunctionValue.h │ │ ├── CSSGradientValue.cpp │ │ ├── CSSGradientValue.h │ │ ├── CSSGridAutoRepeatValue.cpp │ │ ├── CSSGridAutoRepeatValue.h │ │ ├── CSSGridIntegerRepeatValue.cpp │ │ ├── CSSGridIntegerRepeatValue.h │ │ ├── CSSGridLineNamesValue.cpp │ │ ├── CSSGridLineNamesValue.h │ │ ├── CSSGridTemplateAreasValue.cpp │ │ ├── CSSGridTemplateAreasValue.h │ │ ├── CSSGroupingRule.cpp │ │ ├── CSSGroupingRule.h │ │ ├── CSSHelper.h │ │ ├── CSSImageGeneratorValue.cpp │ │ ├── CSSImageGeneratorValue.h │ │ ├── CSSImageSetValue.cpp │ │ ├── CSSImageSetValue.h │ │ ├── CSSImageValue.cpp │ │ ├── CSSImageValue.h │ │ ├── CSSImportRule.cpp │ │ ├── CSSImportRule.h │ │ ├── CSSImportRule.idl │ │ ├── CSSInheritedValue.cpp │ │ ├── CSSInheritedValue.h │ │ ├── CSSInitialValue.cpp │ │ ├── CSSInitialValue.h │ │ ├── CSSKeyframeRule.cpp │ │ ├── CSSKeyframeRule.h │ │ ├── CSSKeyframeRule.idl │ │ ├── CSSKeyframesRule.cpp │ │ ├── CSSKeyframesRule.h │ │ ├── CSSKeyframesRule.idl │ │ ├── CSSLineBoxContainValue.cpp │ │ ├── CSSLineBoxContainValue.h │ │ ├── CSSMarkup.cpp │ │ ├── CSSMarkup.h │ │ ├── CSSMediaRule.cpp │ │ ├── CSSMediaRule.h │ │ ├── CSSMediaRule.idl │ │ ├── CSSNamedImageValue.cpp │ │ ├── CSSNamedImageValue.h │ │ ├── CSSNamespaceRule.cpp │ │ ├── CSSNamespaceRule.h │ │ ├── CSSNamespaceRule.idl │ │ ├── CSSPageRule.cpp │ │ ├── CSSPageRule.h │ │ ├── CSSPageRule.idl │ │ ├── CSSPaintCallback.h │ │ ├── CSSPaintCallback.idl │ │ ├── CSSPaintImageValue.cpp │ │ ├── CSSPaintImageValue.h │ │ ├── CSSPaintSize.h │ │ ├── CSSPaintSize.idl │ │ ├── CSSPendingSubstitutionValue.cpp │ │ ├── CSSPendingSubstitutionValue.h │ │ ├── CSSPrimitiveValue.cpp │ │ ├── CSSPrimitiveValue.h │ │ ├── CSSPrimitiveValueMappings.h │ │ ├── CSSProperties.json │ │ ├── CSSProperty.cpp │ │ ├── CSSProperty.h │ │ ├── CSSPropertySourceData.cpp │ │ ├── CSSPropertySourceData.h │ │ ├── CSSReflectValue.cpp │ │ ├── CSSReflectValue.h │ │ ├── CSSReflectionDirection.h │ │ ├── CSSRegisteredCustomProperty.cpp │ │ ├── CSSRegisteredCustomProperty.h │ │ ├── CSSRevertValue.cpp │ │ ├── CSSRevertValue.h │ │ ├── CSSRule.cpp │ │ ├── CSSRule.h │ │ ├── CSSRule.idl │ │ ├── CSSRuleList.cpp │ │ ├── CSSRuleList.h │ │ ├── CSSRuleList.idl │ │ ├── CSSSegmentedFontFace.cpp │ │ ├── CSSSegmentedFontFace.h │ │ ├── CSSSelector.cpp │ │ ├── CSSSelector.h │ │ ├── CSSSelectorList.cpp │ │ ├── CSSSelectorList.h │ │ ├── CSSShadowValue.cpp │ │ ├── CSSShadowValue.h │ │ ├── CSSStyleDeclaration.cpp │ │ ├── CSSStyleDeclaration.h │ │ ├── CSSStyleDeclaration.idl │ │ ├── CSSStyleRule.cpp │ │ ├── CSSStyleRule.h │ │ ├── CSSStyleRule.idl │ │ ├── CSSStyleSheet.cpp │ │ ├── CSSStyleSheet.h │ │ ├── CSSStyleSheet.idl │ │ ├── CSSSupportsRule.cpp │ │ ├── CSSSupportsRule.h │ │ ├── CSSSupportsRule.idl │ │ ├── CSSTimingFunctionValue.cpp │ │ ├── CSSTimingFunctionValue.h │ │ ├── CSSToLengthConversionData.cpp │ │ ├── CSSToLengthConversionData.h │ │ ├── CSSToStyleMap.cpp │ │ ├── CSSToStyleMap.h │ │ ├── CSSUnicodeRangeValue.cpp │ │ ├── CSSUnicodeRangeValue.h │ │ ├── CSSUnknownRule.h │ │ ├── CSSUnknownRule.idl │ │ ├── CSSUnsetValue.cpp │ │ ├── CSSUnsetValue.h │ │ ├── CSSValue.cpp │ │ ├── CSSValue.h │ │ ├── CSSValueKeywords.in │ │ ├── CSSValueList.cpp │ │ ├── CSSValueList.h │ │ ├── CSSValuePool.cpp │ │ ├── CSSValuePool.h │ │ ├── CSSVariableData.cpp │ │ ├── CSSVariableData.h │ │ ├── CSSVariableReferenceValue.cpp │ │ ├── CSSVariableReferenceValue.h │ │ ├── Counter.h │ │ ├── DOMCSSCustomPropertyDescriptor.h │ │ ├── DOMCSSCustomPropertyDescriptor.idl │ │ ├── DOMCSSNamespace.cpp │ │ ├── DOMCSSNamespace.h │ │ ├── DOMCSSNamespace.idl │ │ ├── DOMCSSPaintWorklet.cpp │ │ ├── DOMCSSPaintWorklet.h │ │ ├── DOMCSSPaintWorklet.idl │ │ ├── DOMCSSRegisterCustomProperty.cpp │ │ ├── DOMCSSRegisterCustomProperty.h │ │ ├── DOMCSSRegisterCustomProperty.idl │ │ ├── DOMMatrix.cpp │ │ ├── DOMMatrix.h │ │ ├── DOMMatrix.idl │ │ ├── DOMMatrix2DInit.h │ │ ├── DOMMatrix2DInit.idl │ │ ├── DOMMatrixInit.h │ │ ├── DOMMatrixInit.idl │ │ ├── DOMMatrixReadOnly.cpp │ │ ├── DOMMatrixReadOnly.h │ │ ├── DOMMatrixReadOnly.idl │ │ ├── DeprecatedCSSOMCounter.h │ │ ├── DeprecatedCSSOMCounter.idl │ │ ├── DeprecatedCSSOMPrimitiveValue.cpp │ │ ├── DeprecatedCSSOMPrimitiveValue.h │ │ ├── DeprecatedCSSOMPrimitiveValue.idl │ │ ├── DeprecatedCSSOMRGBColor.h │ │ ├── DeprecatedCSSOMRGBColor.idl │ │ ├── DeprecatedCSSOMRect.h │ │ ├── DeprecatedCSSOMRect.idl │ │ ├── DeprecatedCSSOMValue.cpp │ │ ├── DeprecatedCSSOMValue.h │ │ ├── DeprecatedCSSOMValue.idl │ │ ├── DeprecatedCSSOMValueList.cpp │ │ ├── DeprecatedCSSOMValueList.h │ │ ├── DeprecatedCSSOMValueList.idl │ │ ├── DocumentRuleSets.cpp │ │ ├── DocumentRuleSets.h │ │ ├── ElementCSSInlineStyle.idl │ │ ├── ElementRuleCollector.cpp │ │ ├── ElementRuleCollector.h │ │ ├── FontFace.cpp │ │ ├── FontFace.h │ │ ├── FontFace.idl │ │ ├── FontFaceSet.cpp │ │ ├── FontFaceSet.h │ │ ├── FontFaceSet.idl │ │ ├── FontSelectionValueInlines.h │ │ ├── FontVariantBuilder.cpp │ │ ├── FontVariantBuilder.h │ │ ├── InspectorCSSOMWrappers.cpp │ │ ├── InspectorCSSOMWrappers.h │ │ ├── LengthFunctions.cpp │ │ ├── LengthFunctions.h │ │ ├── MediaFeatureNames.cpp │ │ ├── MediaFeatureNames.h │ │ ├── MediaList.cpp │ │ ├── MediaList.h │ │ ├── MediaList.idl │ │ ├── MediaQuery.cpp │ │ ├── MediaQuery.h │ │ ├── MediaQueryEvaluator.cpp │ │ ├── MediaQueryEvaluator.h │ │ ├── MediaQueryExpression.cpp │ │ ├── MediaQueryExpression.h │ │ ├── MediaQueryList.cpp │ │ ├── MediaQueryList.h │ │ ├── MediaQueryList.idl │ │ ├── MediaQueryListListener.h │ │ ├── MediaQueryListListener.idl │ │ ├── MediaQueryMatcher.cpp │ │ ├── MediaQueryMatcher.h │ │ ├── MediaQueryParserContext.cpp │ │ ├── MediaQueryParserContext.h │ │ ├── PageRuleCollector.cpp │ │ ├── PageRuleCollector.h │ │ ├── Pair.h │ │ ├── PropertySetCSSStyleDeclaration.cpp │ │ ├── PropertySetCSSStyleDeclaration.h │ │ ├── RGBColor.cpp │ │ ├── RGBColor.h │ │ ├── Rect.h │ │ ├── RuleFeature.cpp │ │ ├── RuleFeature.h │ │ ├── RuleSet.cpp │ │ ├── RuleSet.h │ │ ├── SVGCSSComputedStyleDeclaration.cpp │ │ ├── SVGCSSValueKeywords.in │ │ ├── SelectorChecker.cpp │ │ ├── SelectorChecker.h │ │ ├── SelectorCheckerTestFunctions.h │ │ ├── SelectorFilter.cpp │ │ ├── SelectorFilter.h │ │ ├── SelectorPseudoClassAndCompatibilityElementMap.in │ │ ├── SelectorPseudoElementTypeMap.in │ │ ├── SelectorPseudoTypeMap.h │ │ ├── StyleBuilder.h │ │ ├── StyleBuilderConverter.h │ │ ├── StyleBuilderCustom.h │ │ ├── StyleColor.cpp │ │ ├── StyleColor.h │ │ ├── StyleMedia.cpp │ │ ├── StyleMedia.h │ │ ├── StyleMedia.idl │ │ ├── StyleProperties.cpp │ │ ├── StyleProperties.h │ │ ├── StylePropertyShorthand.cpp │ │ ├── StylePropertyShorthand.h │ │ ├── StyleResolver.cpp │ │ ├── StyleResolver.h │ │ ├── StyleRule.cpp │ │ ├── StyleRule.h │ │ ├── StyleRuleImport.cpp │ │ ├── StyleRuleImport.h │ │ ├── StyleSheet.cpp │ │ ├── StyleSheet.h │ │ ├── StyleSheet.idl │ │ ├── StyleSheetContents.cpp │ │ ├── StyleSheetContents.h │ │ ├── StyleSheetList.cpp │ │ ├── StyleSheetList.h │ │ ├── StyleSheetList.idl │ │ ├── TransformFunctions.cpp │ │ ├── TransformFunctions.h │ │ ├── ViewportStyleResolver.cpp │ │ ├── ViewportStyleResolver.h │ │ ├── WebKitCSSMatrix.cpp │ │ ├── WebKitCSSMatrix.h │ │ ├── WebKitCSSMatrix.idl │ │ ├── WebKitCSSViewportRule.cpp │ │ ├── WebKitCSSViewportRule.h │ │ ├── WebKitCSSViewportRule.idl │ │ ├── WebKitFontFamilyNames.in │ │ ├── fullscreen.css │ │ ├── html.css │ │ ├── make-css-file-arrays.pl │ │ ├── makeSelectorPseudoClassAndCompatibilityElementMap.py │ │ ├── makeSelectorPseudoElementsMap.py │ │ ├── makeprop.pl │ │ ├── makevalues.pl │ │ ├── mathml.css │ │ ├── mediaControls.css │ │ ├── mediaControlsGtk.css │ │ ├── mediaControlsiOS.css │ │ ├── parser │ │ │ ├── CSSAtRuleID.cpp │ │ │ ├── CSSAtRuleID.h │ │ │ ├── CSSDeferredParser.cpp │ │ │ ├── CSSDeferredParser.h │ │ │ ├── CSSParser.cpp │ │ │ ├── CSSParser.h │ │ │ ├── CSSParserContext.cpp │ │ │ ├── CSSParserContext.h │ │ │ ├── CSSParserFastPaths.cpp │ │ │ ├── CSSParserFastPaths.h │ │ │ ├── CSSParserIdioms.cpp │ │ │ ├── CSSParserIdioms.h │ │ │ ├── CSSParserImpl.cpp │ │ │ ├── CSSParserImpl.h │ │ │ ├── CSSParserMode.h │ │ │ ├── CSSParserObserver.h │ │ │ ├── CSSParserObserverWrapper.cpp │ │ │ ├── CSSParserObserverWrapper.h │ │ │ ├── CSSParserSelector.cpp │ │ │ ├── CSSParserSelector.h │ │ │ ├── CSSParserToken.cpp │ │ │ ├── CSSParserToken.h │ │ │ ├── CSSParserTokenRange.cpp │ │ │ ├── CSSParserTokenRange.h │ │ │ ├── CSSPropertyParser.cpp │ │ │ ├── CSSPropertyParser.h │ │ │ ├── CSSPropertyParserHelpers.cpp │ │ │ ├── CSSPropertyParserHelpers.h │ │ │ ├── CSSSelectorParser.cpp │ │ │ ├── CSSSelectorParser.h │ │ │ ├── CSSSupportsParser.cpp │ │ │ ├── CSSSupportsParser.h │ │ │ ├── CSSTokenizer.cpp │ │ │ ├── CSSTokenizer.h │ │ │ ├── CSSTokenizerInputStream.cpp │ │ │ ├── CSSTokenizerInputStream.h │ │ │ ├── CSSVariableParser.cpp │ │ │ ├── CSSVariableParser.h │ │ │ ├── MediaQueryBlockWatcher.cpp │ │ │ ├── MediaQueryBlockWatcher.h │ │ │ ├── MediaQueryParser.cpp │ │ │ ├── MediaQueryParser.h │ │ │ ├── SizesAttributeParser.cpp │ │ │ ├── SizesAttributeParser.h │ │ │ ├── SizesCalcParser.cpp │ │ │ └── SizesCalcParser.h │ │ ├── plugIns.css │ │ ├── quirks.css │ │ ├── svg.css │ │ ├── themeWin.css │ │ ├── themeWinQuirks.css │ │ └── typedom │ │ │ ├── StylePropertyMap.h │ │ │ ├── StylePropertyMap.idl │ │ │ ├── StylePropertyMapReadOnly.cpp │ │ │ ├── StylePropertyMapReadOnly.h │ │ │ ├── StylePropertyMapReadOnly.idl │ │ │ ├── TypedOMCSSImageValue.cpp │ │ │ ├── TypedOMCSSImageValue.h │ │ │ ├── TypedOMCSSImageValue.idl │ │ │ ├── TypedOMCSSNumericValue.cpp │ │ │ ├── TypedOMCSSNumericValue.h │ │ │ ├── TypedOMCSSNumericValue.idl │ │ │ ├── TypedOMCSSStyleValue.cpp │ │ │ ├── TypedOMCSSStyleValue.h │ │ │ ├── TypedOMCSSStyleValue.idl │ │ │ ├── TypedOMCSSUnitValue.cpp │ │ │ ├── TypedOMCSSUnitValue.h │ │ │ ├── TypedOMCSSUnitValue.idl │ │ │ ├── TypedOMCSSUnparsedValue.cpp │ │ │ ├── TypedOMCSSUnparsedValue.h │ │ │ └── TypedOMCSSUnparsedValue.idl │ ├── cssjit │ │ ├── CSSPtrTag.h │ │ ├── CompiledSelector.h │ │ ├── FunctionCall.h │ │ ├── RegisterAllocator.h │ │ ├── SelectorCompiler.cpp │ │ ├── SelectorCompiler.h │ │ └── StackAllocator.h │ ├── dom │ │ ├── AbortController.cpp │ │ ├── AbortController.h │ │ ├── AbortController.idl │ │ ├── AbortSignal.cpp │ │ ├── AbortSignal.h │ │ ├── AbortSignal.idl │ │ ├── ActiveDOMCallback.cpp │ │ ├── ActiveDOMCallback.h │ │ ├── ActiveDOMCallbackMicrotask.cpp │ │ ├── ActiveDOMCallbackMicrotask.h │ │ ├── ActiveDOMObject.cpp │ │ ├── ActiveDOMObject.h │ │ ├── AllDescendantsCollection.cpp │ │ ├── AllDescendantsCollection.h │ │ ├── AnimationEvent.cpp │ │ ├── AnimationEvent.h │ │ ├── AnimationEvent.idl │ │ ├── Attr.cpp │ │ ├── Attr.h │ │ ├── Attr.idl │ │ ├── Attribute.h │ │ ├── BeforeLoadEvent.h │ │ ├── BeforeLoadEvent.idl │ │ ├── BeforeTextInsertedEvent.cpp │ │ ├── BeforeTextInsertedEvent.h │ │ ├── BeforeUnloadEvent.cpp │ │ ├── BeforeUnloadEvent.h │ │ ├── BeforeUnloadEvent.idl │ │ ├── CDATASection.cpp │ │ ├── CDATASection.h │ │ ├── CDATASection.idl │ │ ├── CallbackResult.h │ │ ├── CharacterData.cpp │ │ ├── CharacterData.h │ │ ├── CharacterData.idl │ │ ├── ChildListMutationScope.cpp │ │ ├── ChildListMutationScope.h │ │ ├── ChildNode.idl │ │ ├── ChildNodeList.cpp │ │ ├── ChildNodeList.h │ │ ├── ClassCollection.cpp │ │ ├── ClassCollection.h │ │ ├── ClipboardEvent.cpp │ │ ├── ClipboardEvent.h │ │ ├── ClipboardEvent.idl │ │ ├── CollectionIndexCache.cpp │ │ ├── CollectionIndexCache.h │ │ ├── Comment.cpp │ │ ├── Comment.h │ │ ├── Comment.idl │ │ ├── ComposedTreeAncestorIterator.h │ │ ├── ComposedTreeIterator.cpp │ │ ├── ComposedTreeIterator.h │ │ ├── CompositionEvent.cpp │ │ ├── CompositionEvent.h │ │ ├── CompositionEvent.idl │ │ ├── ConstantPropertyMap.cpp │ │ ├── ConstantPropertyMap.h │ │ ├── ContainerNode.cpp │ │ ├── ContainerNode.h │ │ ├── ContainerNodeAlgorithms.cpp │ │ ├── ContainerNodeAlgorithms.h │ │ ├── ContextDestructionObserver.cpp │ │ ├── ContextDestructionObserver.h │ │ ├── CurrentScriptIncrementer.h │ │ ├── CustomElementReactionQueue.cpp │ │ ├── CustomElementReactionQueue.h │ │ ├── CustomElementRegistry.cpp │ │ ├── CustomElementRegistry.h │ │ ├── CustomElementRegistry.idl │ │ ├── CustomEvent.cpp │ │ ├── CustomEvent.h │ │ ├── CustomEvent.idl │ │ ├── DOMException.cpp │ │ ├── DOMException.h │ │ ├── DOMException.idl │ │ ├── DOMHighResTimeStamp.h │ │ ├── DOMImplementation.cpp │ │ ├── DOMImplementation.h │ │ ├── DOMImplementation.idl │ │ ├── DOMPasteAccess.h │ │ ├── DOMPoint.h │ │ ├── DOMPoint.idl │ │ ├── DOMPointInit.h │ │ ├── DOMPointInit.idl │ │ ├── DOMPointReadOnly.cpp │ │ ├── DOMPointReadOnly.h │ │ ├── DOMPointReadOnly.idl │ │ ├── DOMQuad.cpp │ │ ├── DOMQuad.h │ │ ├── DOMQuad.idl │ │ ├── DOMQuadInit.h │ │ ├── DOMQuadInit.idl │ │ ├── DOMRect.h │ │ ├── DOMRect.idl │ │ ├── DOMRectInit.h │ │ ├── DOMRectInit.idl │ │ ├── DOMRectList.cpp │ │ ├── DOMRectList.h │ │ ├── DOMRectList.idl │ │ ├── DOMRectReadOnly.cpp │ │ ├── DOMRectReadOnly.h │ │ ├── DOMRectReadOnly.idl │ │ ├── DOMStringList.cpp │ │ ├── DOMStringList.h │ │ ├── DOMStringList.idl │ │ ├── DOMStringMap.h │ │ ├── DOMStringMap.idl │ │ ├── DOMTimeStamp.h │ │ ├── DataTransfer.cpp │ │ ├── DataTransfer.h │ │ ├── DataTransfer.idl │ │ ├── DataTransferItem.cpp │ │ ├── DataTransferItem.h │ │ ├── DataTransferItem.idl │ │ ├── DataTransferItemList.cpp │ │ ├── DataTransferItemList.h │ │ ├── DataTransferItemList.idl │ │ ├── DataTransferMac.mm │ │ ├── DatasetDOMStringMap.cpp │ │ ├── DatasetDOMStringMap.h │ │ ├── DecodedDataDocumentParser.cpp │ │ ├── DecodedDataDocumentParser.h │ │ ├── DeviceMotionClient.h │ │ ├── DeviceMotionController.cpp │ │ ├── DeviceMotionController.h │ │ ├── DeviceMotionData.cpp │ │ ├── DeviceMotionData.h │ │ ├── DeviceMotionEvent.cpp │ │ ├── DeviceMotionEvent.h │ │ ├── DeviceMotionEvent.idl │ │ ├── DeviceOrientationAndMotionAccessController.cpp │ │ ├── DeviceOrientationAndMotionAccessController.h │ │ ├── DeviceOrientationClient.h │ │ ├── DeviceOrientationController.cpp │ │ ├── DeviceOrientationController.h │ │ ├── DeviceOrientationData.cpp │ │ ├── DeviceOrientationData.h │ │ ├── DeviceOrientationEvent.cpp │ │ ├── DeviceOrientationEvent.h │ │ ├── DeviceOrientationEvent.idl │ │ ├── DeviceOrientationOrMotionEvent.cpp │ │ ├── DeviceOrientationOrMotionEvent.h │ │ ├── DeviceOrientationOrMotionEvent.idl │ │ ├── DeviceOrientationOrMotionPermissionState.h │ │ ├── DeviceOrientationOrMotionPermissionState.idl │ │ ├── Document.cpp │ │ ├── Document.h │ │ ├── Document.idl │ │ ├── DocumentAndElementEventHandlers.idl │ │ ├── DocumentEventQueue.cpp │ │ ├── DocumentEventQueue.h │ │ ├── DocumentFragment.cpp │ │ ├── DocumentFragment.h │ │ ├── DocumentFragment.idl │ │ ├── DocumentFullscreen.h │ │ ├── DocumentFullscreen.idl │ │ ├── DocumentIdentifier.h │ │ ├── DocumentMarker.h │ │ ├── DocumentMarkerController.cpp │ │ ├── DocumentMarkerController.h │ │ ├── DocumentOrShadowRoot.idl │ │ ├── DocumentParser.cpp │ │ ├── DocumentParser.h │ │ ├── DocumentSharedObjectPool.cpp │ │ ├── DocumentSharedObjectPool.h │ │ ├── DocumentStorageAccess.cpp │ │ ├── DocumentStorageAccess.h │ │ ├── DocumentStorageAccess.idl │ │ ├── DocumentTiming.h │ │ ├── DocumentTouch.cpp │ │ ├── DocumentTouch.h │ │ ├── DocumentTouch.idl │ │ ├── DocumentType.cpp │ │ ├── DocumentType.h │ │ ├── DocumentType.idl │ │ ├── Element.cpp │ │ ├── Element.h │ │ ├── Element.idl │ │ ├── ElementAncestorIterator.h │ │ ├── ElementAndTextDescendantIterator.h │ │ ├── ElementChildIterator.h │ │ ├── ElementData.cpp │ │ ├── ElementData.h │ │ ├── ElementDescendantIterator.h │ │ ├── ElementIdentifier.h │ │ ├── ElementIterator.h │ │ ├── ElementIteratorAssertions.h │ │ ├── ElementRareData.cpp │ │ ├── ElementRareData.h │ │ ├── ElementTraversal.h │ │ ├── ErrorEvent.cpp │ │ ├── ErrorEvent.h │ │ ├── ErrorEvent.idl │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── Event.idl │ │ ├── EventContext.cpp │ │ ├── EventContext.h │ │ ├── EventDispatcher.cpp │ │ ├── EventDispatcher.h │ │ ├── EventInit.h │ │ ├── EventInit.idl │ │ ├── EventListener.h │ │ ├── EventListener.idl │ │ ├── EventListenerMap.cpp │ │ ├── EventListenerMap.h │ │ ├── EventModifierInit.h │ │ ├── EventModifierInit.idl │ │ ├── EventNames.cpp │ │ ├── EventNames.h │ │ ├── EventNames.in │ │ ├── EventPath.cpp │ │ ├── EventPath.h │ │ ├── EventQueue.h │ │ ├── EventSender.h │ │ ├── EventTarget.cpp │ │ ├── EventTarget.h │ │ ├── EventTarget.idl │ │ ├── EventTargetFactory.in │ │ ├── Exception.h │ │ ├── ExceptionCode.h │ │ ├── ExceptionData.cpp │ │ ├── ExceptionData.h │ │ ├── ExceptionOr.h │ │ ├── ExtensionStyleSheets.cpp │ │ ├── ExtensionStyleSheets.h │ │ ├── FocusEvent.cpp │ │ ├── FocusEvent.h │ │ ├── FocusEvent.idl │ │ ├── FragmentScriptingPermission.h │ │ ├── FullscreenManager.cpp │ │ ├── FullscreenManager.h │ │ ├── GCReachableRef.cpp │ │ ├── GCReachableRef.h │ │ ├── GenericEventQueue.cpp │ │ ├── GenericEventQueue.h │ │ ├── GlobalEventHandlers.idl │ │ ├── HashChangeEvent.h │ │ ├── HashChangeEvent.idl │ │ ├── IdTargetObserver.cpp │ │ ├── IdTargetObserver.h │ │ ├── IdTargetObserverRegistry.cpp │ │ ├── IdTargetObserverRegistry.h │ │ ├── IgnoreDestructiveWriteCountIncrementer.h │ │ ├── IgnoreOpensDuringUnloadCountIncrementer.h │ │ ├── InlineClassicScript.cpp │ │ ├── InlineClassicScript.h │ │ ├── InlineStyleSheetOwner.cpp │ │ ├── InlineStyleSheetOwner.h │ │ ├── InputEvent.cpp │ │ ├── InputEvent.h │ │ ├── InputEvent.idl │ │ ├── KeyboardEvent.cpp │ │ ├── KeyboardEvent.h │ │ ├── KeyboardEvent.idl │ │ ├── LiveNodeList.cpp │ │ ├── LiveNodeList.h │ │ ├── LoadableClassicScript.cpp │ │ ├── LoadableClassicScript.h │ │ ├── LoadableModuleScript.cpp │ │ ├── LoadableModuleScript.h │ │ ├── LoadableScript.cpp │ │ ├── LoadableScript.h │ │ ├── LoadableScriptClient.h │ │ ├── MessageChannel.cpp │ │ ├── MessageChannel.h │ │ ├── MessageChannel.idl │ │ ├── MessageEvent.cpp │ │ ├── MessageEvent.h │ │ ├── MessageEvent.idl │ │ ├── MessagePort.cpp │ │ ├── MessagePort.h │ │ ├── MessagePort.idl │ │ ├── MessagePortIdentifier.h │ │ ├── Microtasks.cpp │ │ ├── Microtasks.h │ │ ├── ModuleFetchParameters.h │ │ ├── MouseEvent.cpp │ │ ├── MouseEvent.h │ │ ├── MouseEvent.idl │ │ ├── MouseEventInit.h │ │ ├── MouseEventInit.idl │ │ ├── MouseRelatedEvent.cpp │ │ ├── MouseRelatedEvent.h │ │ ├── MutationCallback.h │ │ ├── MutationCallback.idl │ │ ├── MutationEvent.cpp │ │ ├── MutationEvent.h │ │ ├── MutationEvent.idl │ │ ├── MutationObserver.cpp │ │ ├── MutationObserver.h │ │ ├── MutationObserver.idl │ │ ├── MutationObserverInterestGroup.cpp │ │ ├── MutationObserverInterestGroup.h │ │ ├── MutationObserverRegistration.cpp │ │ ├── MutationObserverRegistration.h │ │ ├── MutationRecord.cpp │ │ ├── MutationRecord.h │ │ ├── MutationRecord.idl │ │ ├── NameNodeList.cpp │ │ ├── NameNodeList.h │ │ ├── NamedNodeMap.cpp │ │ ├── NamedNodeMap.h │ │ ├── NamedNodeMap.idl │ │ ├── NativeNodeFilter.cpp │ │ ├── NativeNodeFilter.h │ │ ├── NavigatorMaxTouchPoints.idl │ │ ├── Node.cpp │ │ ├── Node.h │ │ ├── Node.idl │ │ ├── NodeConstants.h │ │ ├── NodeFilter.h │ │ ├── NodeFilter.idl │ │ ├── NodeFilterCondition.cpp │ │ ├── NodeFilterCondition.h │ │ ├── NodeIterator.cpp │ │ ├── NodeIterator.h │ │ ├── NodeIterator.idl │ │ ├── NodeList.cpp │ │ ├── NodeList.h │ │ ├── NodeList.idl │ │ ├── NodeRareData.cpp │ │ ├── NodeRareData.h │ │ ├── NodeRenderStyle.h │ │ ├── NodeTraversal.cpp │ │ ├── NodeTraversal.h │ │ ├── NodeWithIndex.h │ │ ├── NonDocumentTypeChildNode.idl │ │ ├── NonElementParentNode.idl │ │ ├── OverflowEvent.cpp │ │ ├── OverflowEvent.h │ │ ├── OverflowEvent.idl │ │ ├── PageTransitionEvent.cpp │ │ ├── PageTransitionEvent.h │ │ ├── PageTransitionEvent.idl │ │ ├── ParentNode.idl │ │ ├── PendingScript.cpp │ │ ├── PendingScript.h │ │ ├── PendingScriptClient.h │ │ ├── PointerEvent.cpp │ │ ├── PointerEvent.h │ │ ├── PointerEvent.idl │ │ ├── PopStateEvent.cpp │ │ ├── PopStateEvent.h │ │ ├── PopStateEvent.idl │ │ ├── Position.cpp │ │ ├── Position.h │ │ ├── PositionIterator.cpp │ │ ├── PositionIterator.h │ │ ├── ProcessingInstruction.cpp │ │ ├── ProcessingInstruction.h │ │ ├── ProcessingInstruction.idl │ │ ├── ProgressEvent.cpp │ │ ├── ProgressEvent.h │ │ ├── ProgressEvent.idl │ │ ├── PromiseRejectionEvent.cpp │ │ ├── PromiseRejectionEvent.h │ │ ├── PromiseRejectionEvent.idl │ │ ├── PseudoElement.cpp │ │ ├── PseudoElement.h │ │ ├── QualifiedName.cpp │ │ ├── QualifiedName.h │ │ ├── QualifiedNameCache.cpp │ │ ├── QualifiedNameCache.h │ │ ├── RadioButtonGroups.cpp │ │ ├── RadioButtonGroups.h │ │ ├── Range.cpp │ │ ├── Range.h │ │ ├── Range.idl │ │ ├── RangeBoundaryPoint.h │ │ ├── RawDataDocumentParser.h │ │ ├── RegisteredEventListener.h │ │ ├── RejectedPromiseTracker.cpp │ │ ├── RejectedPromiseTracker.h │ │ ├── RenderedDocumentMarker.h │ │ ├── RequestAnimationFrameCallback.h │ │ ├── RequestAnimationFrameCallback.idl │ │ ├── ScopedEventQueue.cpp │ │ ├── ScopedEventQueue.h │ │ ├── ScriptDisallowedScope.h │ │ ├── ScriptElement.cpp │ │ ├── ScriptElement.h │ │ ├── ScriptElementCachedScriptFetcher.cpp │ │ ├── ScriptElementCachedScriptFetcher.h │ │ ├── ScriptExecutionContext.cpp │ │ ├── ScriptExecutionContext.h │ │ ├── ScriptRunner.cpp │ │ ├── ScriptRunner.h │ │ ├── ScriptableDocumentParser.cpp │ │ ├── ScriptableDocumentParser.h │ │ ├── ScriptedAnimationController.cpp │ │ ├── ScriptedAnimationController.h │ │ ├── SecurityContext.cpp │ │ ├── SecurityContext.h │ │ ├── SecurityOriginPolicy.cpp │ │ ├── SecurityOriginPolicy.h │ │ ├── SecurityPolicyViolationEvent.h │ │ ├── SecurityPolicyViolationEvent.idl │ │ ├── SelectorQuery.cpp │ │ ├── SelectorQuery.h │ │ ├── ShadowRoot.cpp │ │ ├── ShadowRoot.h │ │ ├── ShadowRoot.idl │ │ ├── ShadowRootMode.h │ │ ├── ShadowRootMode.idl │ │ ├── SimulatedClick.cpp │ │ ├── SimulatedClick.h │ │ ├── SimulatedClickOptions.h │ │ ├── SlotAssignment.cpp │ │ ├── SlotAssignment.h │ │ ├── Slotable.idl │ │ ├── SpaceSplitString.cpp │ │ ├── SpaceSplitString.h │ │ ├── SpectreGadget.cpp │ │ ├── SpectreGadget.h │ │ ├── SpectreGadget.idl │ │ ├── StaticNodeList.cpp │ │ ├── StaticNodeList.h │ │ ├── StaticRange.cpp │ │ ├── StaticRange.h │ │ ├── StaticRange.idl │ │ ├── StringCallback.cpp │ │ ├── StringCallback.h │ │ ├── StringCallback.idl │ │ ├── StyledElement.cpp │ │ ├── StyledElement.h │ │ ├── SuccessOr.h │ │ ├── TagCollection.cpp │ │ ├── TagCollection.h │ │ ├── TemplateContentDocumentFragment.cpp │ │ ├── TemplateContentDocumentFragment.h │ │ ├── Text.cpp │ │ ├── Text.h │ │ ├── Text.idl │ │ ├── TextDecoder.cpp │ │ ├── TextDecoder.h │ │ ├── TextDecoder.idl │ │ ├── TextEncoder.cpp │ │ ├── TextEncoder.h │ │ ├── TextEncoder.idl │ │ ├── TextEvent.cpp │ │ ├── TextEvent.h │ │ ├── TextEvent.idl │ │ ├── TextEventInputType.h │ │ ├── TextNodeTraversal.cpp │ │ ├── TextNodeTraversal.h │ │ ├── ThrowOnDynamicMarkupInsertionCountIncrementer.h │ │ ├── Touch.cpp │ │ ├── Touch.h │ │ ├── Touch.idl │ │ ├── TouchEvent.cpp │ │ ├── TouchEvent.h │ │ ├── TouchEvent.idl │ │ ├── TouchList.cpp │ │ ├── TouchList.h │ │ ├── TouchList.idl │ │ ├── TransformSource.h │ │ ├── TransformSourceLibxslt.cpp │ │ ├── TransitionEvent.cpp │ │ ├── TransitionEvent.h │ │ ├── TransitionEvent.idl │ │ ├── Traversal.cpp │ │ ├── Traversal.h │ │ ├── TreeDepthLimit.h │ │ ├── TreeScope.cpp │ │ ├── TreeScope.h │ │ ├── TreeScopeOrderedMap.cpp │ │ ├── TreeScopeOrderedMap.h │ │ ├── TreeWalker.cpp │ │ ├── TreeWalker.h │ │ ├── TreeWalker.idl │ │ ├── TypedElementDescendantIterator.h │ │ ├── UIEvent.cpp │ │ ├── UIEvent.h │ │ ├── UIEvent.idl │ │ ├── UIEventInit.h │ │ ├── UIEventInit.idl │ │ ├── UIEventWithKeyState.cpp │ │ ├── UIEventWithKeyState.h │ │ ├── UserActionElementSet.cpp │ │ ├── UserActionElementSet.h │ │ ├── UserGestureIndicator.cpp │ │ ├── UserGestureIndicator.h │ │ ├── UserTypingGestureIndicator.cpp │ │ ├── UserTypingGestureIndicator.h │ │ ├── ViewportArguments.cpp │ │ ├── ViewportArguments.h │ │ ├── VisibilityChangeClient.h │ │ ├── VisibilityState.h │ │ ├── VisibilityState.idl │ │ ├── VisitedLinkState.cpp │ │ ├── VisitedLinkState.h │ │ ├── WebKitAnimationEvent.cpp │ │ ├── WebKitAnimationEvent.h │ │ ├── WebKitAnimationEvent.idl │ │ ├── WebKitTransitionEvent.cpp │ │ ├── WebKitTransitionEvent.h │ │ ├── WebKitTransitionEvent.idl │ │ ├── WheelEvent.cpp │ │ ├── WheelEvent.h │ │ ├── WheelEvent.idl │ │ ├── XMLDocument.cpp │ │ ├── XMLDocument.h │ │ ├── XMLDocument.idl │ │ ├── ios │ │ │ ├── MouseEventIOS.cpp │ │ │ ├── PointerEventIOS.cpp │ │ │ └── TouchEvents.cpp │ │ ├── mac │ │ │ └── GestureEvents.cpp │ │ ├── make_event_factory.pl │ │ ├── make_names.pl │ │ └── messageports │ │ │ ├── MessagePortChannel.cpp │ │ │ ├── MessagePortChannel.h │ │ │ ├── MessagePortChannelProvider.cpp │ │ │ ├── MessagePortChannelProvider.h │ │ │ ├── MessagePortChannelProviderImpl.cpp │ │ │ ├── MessagePortChannelProviderImpl.h │ │ │ ├── MessagePortChannelRegistry.cpp │ │ │ ├── MessagePortChannelRegistry.h │ │ │ ├── MessageWithMessagePorts.cpp │ │ │ └── MessageWithMessagePorts.h │ ├── domjit │ │ ├── DOMJITAbstractHeapRepository.yaml │ │ ├── DOMJITCheckDOM.h │ │ ├── DOMJITHelpers.cpp │ │ ├── DOMJITHelpers.h │ │ ├── DOMJITIDLConvert.h │ │ ├── DOMJITIDLType.h │ │ ├── DOMJITIDLTypeFilter.h │ │ ├── JSDocumentDOMJIT.cpp │ │ ├── JSDocumentFragmentDOMJIT.cpp │ │ ├── JSElementDOMJIT.cpp │ │ ├── JSEventDOMJIT.cpp │ │ ├── JSNodeDOMJIT.cpp │ │ └── generate-abstract-heap.rb │ ├── editing │ │ ├── AlternativeTextController.cpp │ │ ├── AlternativeTextController.h │ │ ├── AppendNodeCommand.cpp │ │ ├── AppendNodeCommand.h │ │ ├── ApplyBlockElementCommand.cpp │ │ ├── ApplyBlockElementCommand.h │ │ ├── ApplyStyleCommand.cpp │ │ ├── ApplyStyleCommand.h │ │ ├── BreakBlockquoteCommand.cpp │ │ ├── BreakBlockquoteCommand.h │ │ ├── ChangeListTypeCommand.cpp │ │ ├── ChangeListTypeCommand.h │ │ ├── ClipboardAccessPolicy.h │ │ ├── CompositeEditCommand.cpp │ │ ├── CompositeEditCommand.h │ │ ├── CompositionUnderline.h │ │ ├── CreateLinkCommand.cpp │ │ ├── CreateLinkCommand.h │ │ ├── CustomUndoStep.cpp │ │ ├── CustomUndoStep.h │ │ ├── DeleteFromTextNodeCommand.cpp │ │ ├── DeleteFromTextNodeCommand.h │ │ ├── DeleteSelectionCommand.cpp │ │ ├── DeleteSelectionCommand.h │ │ ├── DictationAlternative.cpp │ │ ├── DictationAlternative.h │ │ ├── DictationCommand.cpp │ │ ├── DictationCommand.h │ │ ├── DictionaryPopupInfo.h │ │ ├── EditAction.cpp │ │ ├── EditAction.h │ │ ├── EditCommand.cpp │ │ ├── EditCommand.h │ │ ├── Editing.cpp │ │ ├── Editing.h │ │ ├── EditingBehavior.h │ │ ├── EditingBehaviorTypes.h │ │ ├── EditingBoundary.h │ │ ├── EditingStyle.cpp │ │ ├── EditingStyle.h │ │ ├── Editor.cpp │ │ ├── Editor.h │ │ ├── EditorCommand.cpp │ │ ├── EditorDeleteAction.h │ │ ├── EditorInsertAction.h │ │ ├── FindOptions.h │ │ ├── FontAttributeChanges.cpp │ │ ├── FontAttributeChanges.h │ │ ├── FontAttributes.h │ │ ├── FontShadow.h │ │ ├── FormatBlockCommand.cpp │ │ ├── FormatBlockCommand.h │ │ ├── FrameSelection.cpp │ │ ├── FrameSelection.h │ │ ├── HTMLInterchange.cpp │ │ ├── HTMLInterchange.h │ │ ├── IndentOutdentCommand.cpp │ │ ├── IndentOutdentCommand.h │ │ ├── InsertEditableImageCommand.cpp │ │ ├── InsertEditableImageCommand.h │ │ ├── InsertIntoTextNodeCommand.cpp │ │ ├── InsertIntoTextNodeCommand.h │ │ ├── InsertLineBreakCommand.cpp │ │ ├── InsertLineBreakCommand.h │ │ ├── InsertListCommand.cpp │ │ ├── InsertListCommand.h │ │ ├── InsertNestedListCommand.cpp │ │ ├── InsertNestedListCommand.h │ │ ├── InsertNodeBeforeCommand.cpp │ │ ├── InsertNodeBeforeCommand.h │ │ ├── InsertParagraphSeparatorCommand.cpp │ │ ├── InsertParagraphSeparatorCommand.h │ │ ├── InsertTextCommand.cpp │ │ ├── InsertTextCommand.h │ │ ├── MarkupAccumulator.cpp │ │ ├── MarkupAccumulator.h │ │ ├── MergeIdenticalElementsCommand.cpp │ │ ├── MergeIdenticalElementsCommand.h │ │ ├── ModifySelectionListLevel.cpp │ │ ├── ModifySelectionListLevel.h │ │ ├── MoveSelectionCommand.cpp │ │ ├── MoveSelectionCommand.h │ │ ├── RemoveFormatCommand.cpp │ │ ├── RemoveFormatCommand.h │ │ ├── RemoveNodeCommand.cpp │ │ ├── RemoveNodeCommand.h │ │ ├── RemoveNodePreservingChildrenCommand.cpp │ │ ├── RemoveNodePreservingChildrenCommand.h │ │ ├── RenderedPosition.cpp │ │ ├── RenderedPosition.h │ │ ├── ReplaceNodeWithSpanCommand.cpp │ │ ├── ReplaceNodeWithSpanCommand.h │ │ ├── ReplaceRangeWithTextCommand.cpp │ │ ├── ReplaceRangeWithTextCommand.h │ │ ├── ReplaceSelectionCommand.cpp │ │ ├── ReplaceSelectionCommand.h │ │ ├── SelectionRectGatherer.cpp │ │ ├── SelectionRectGatherer.h │ │ ├── SerializedAttachmentData.h │ │ ├── SetNodeAttributeCommand.cpp │ │ ├── SetNodeAttributeCommand.h │ │ ├── SetSelectionCommand.cpp │ │ ├── SetSelectionCommand.h │ │ ├── SimplifyMarkupCommand.cpp │ │ ├── SimplifyMarkupCommand.h │ │ ├── SmartReplace.cpp │ │ ├── SmartReplace.h │ │ ├── SmartReplaceCF.cpp │ │ ├── SpellChecker.cpp │ │ ├── SpellChecker.h │ │ ├── SpellingCorrectionCommand.cpp │ │ ├── SpellingCorrectionCommand.h │ │ ├── SplitElementCommand.cpp │ │ ├── SplitElementCommand.h │ │ ├── SplitTextNodeCommand.cpp │ │ ├── SplitTextNodeCommand.h │ │ ├── SplitTextNodeContainingElementCommand.cpp │ │ ├── SplitTextNodeContainingElementCommand.h │ │ ├── SurroundingText.h │ │ ├── TextAffinity.h │ │ ├── TextCheckingHelper.cpp │ │ ├── TextCheckingHelper.h │ │ ├── TextGranularity.h │ │ ├── TextInsertionBaseCommand.cpp │ │ ├── TextInsertionBaseCommand.h │ │ ├── TextIterator.cpp │ │ ├── TextIterator.h │ │ ├── TextIteratorBehavior.h │ │ ├── TypingCommand.cpp │ │ ├── TypingCommand.h │ │ ├── UndoStep.h │ │ ├── UnlinkCommand.cpp │ │ ├── UnlinkCommand.h │ │ ├── VisiblePosition.cpp │ │ ├── VisiblePosition.h │ │ ├── VisibleSelection.cpp │ │ ├── VisibleSelection.h │ │ ├── VisibleUnits.cpp │ │ ├── VisibleUnits.h │ │ ├── WebContentReader.cpp │ │ ├── WebContentReader.h │ │ ├── WebCorePasteboardFileReader.cpp │ │ ├── WebCorePasteboardFileReader.h │ │ ├── WrapContentsInDummySpanCommand.cpp │ │ ├── WrapContentsInDummySpanCommand.h │ │ ├── WritingDirection.h │ │ ├── atk │ │ │ └── FrameSelectionAtk.cpp │ │ ├── cocoa │ │ │ ├── AutofillElements.cpp │ │ │ ├── AutofillElements.h │ │ │ ├── DataDetection.h │ │ │ ├── DataDetection.mm │ │ │ ├── DictionaryLookup.mm │ │ │ ├── EditorCocoa.mm │ │ │ ├── FontAttributeChangesCocoa.mm │ │ │ ├── FontAttributesCocoa.mm │ │ │ ├── FontShadowCocoa.mm │ │ │ ├── HTMLConverter.h │ │ │ ├── HTMLConverter.mm │ │ │ ├── WebArchiveResourceFromNSAttributedString.h │ │ │ ├── WebArchiveResourceFromNSAttributedString.mm │ │ │ ├── WebArchiveResourceWebResourceHandler.h │ │ │ ├── WebArchiveResourceWebResourceHandler.mm │ │ │ └── WebContentReaderCocoa.mm │ │ ├── gtk │ │ │ └── EditorGtk.cpp │ │ ├── ios │ │ │ ├── DictationCommandIOS.cpp │ │ │ ├── DictationCommandIOS.h │ │ │ └── EditorIOS.mm │ │ ├── libwpe │ │ │ └── EditorLibWPE.cpp │ │ ├── mac │ │ │ ├── AlternativeTextUIController.h │ │ │ ├── AlternativeTextUIController.mm │ │ │ ├── DictionaryLookup.h │ │ │ ├── DictionaryLookupLegacy.mm │ │ │ ├── EditorMac.mm │ │ │ ├── FrameSelectionMac.mm │ │ │ ├── TextAlternativeWithRange.h │ │ │ ├── TextAlternativeWithRange.mm │ │ │ ├── TextUndoInsertionMarkupMac.h │ │ │ └── TextUndoInsertionMarkupMac.mm │ │ ├── markup.cpp │ │ ├── markup.h │ │ └── win │ │ │ └── EditorWin.cpp │ ├── en.lproj │ │ ├── Localizable.strings │ │ ├── Localizable.stringsdict │ │ ├── mediaControlsLocalizedStrings.js │ │ └── modern-media-controls-localized-strings.js │ ├── features.json │ ├── fileapi │ │ ├── AsyncFileStream.cpp │ │ ├── AsyncFileStream.h │ │ ├── Blob.cpp │ │ ├── Blob.h │ │ ├── Blob.idl │ │ ├── BlobBuilder.cpp │ │ ├── BlobBuilder.h │ │ ├── BlobCallback.cpp │ │ ├── BlobCallback.h │ │ ├── BlobCallback.idl │ │ ├── BlobLineEndings.h │ │ ├── BlobLineEndings.idl │ │ ├── BlobPropertyBag.h │ │ ├── BlobPropertyBag.idl │ │ ├── BlobURL.cpp │ │ ├── BlobURL.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── File.idl │ │ ├── FileCocoa.mm │ │ ├── FileError.h │ │ ├── FileError.idl │ │ ├── FileList.cpp │ │ ├── FileList.h │ │ ├── FileList.idl │ │ ├── FileReader.cpp │ │ ├── FileReader.h │ │ ├── FileReader.idl │ │ ├── FileReaderLoader.cpp │ │ ├── FileReaderLoader.h │ │ ├── FileReaderLoaderClient.h │ │ ├── FileReaderSync.cpp │ │ ├── FileReaderSync.h │ │ ├── FileReaderSync.idl │ │ ├── ThreadableBlobRegistry.cpp │ │ └── ThreadableBlobRegistry.h │ ├── history │ │ ├── BackForwardClient.h │ │ ├── BackForwardController.cpp │ │ ├── BackForwardController.h │ │ ├── BackForwardItemIdentifier.h │ │ ├── CachedFrame.cpp │ │ ├── CachedFrame.h │ │ ├── CachedFramePlatformData.h │ │ ├── CachedPage.cpp │ │ ├── CachedPage.h │ │ ├── HistoryItem.cpp │ │ ├── HistoryItem.h │ │ ├── PageCache.cpp │ │ ├── PageCache.h │ │ └── mac │ │ │ └── HistoryItemMac.mm │ ├── html │ │ ├── Autocapitalize.cpp │ │ ├── Autocapitalize.h │ │ ├── AutocapitalizeTypes.h │ │ ├── Autofill.cpp │ │ ├── Autofill.h │ │ ├── BaseButtonInputType.cpp │ │ ├── BaseButtonInputType.h │ │ ├── BaseCheckableInputType.cpp │ │ ├── BaseCheckableInputType.h │ │ ├── BaseChooserOnlyDateAndTimeInputType.cpp │ │ ├── BaseChooserOnlyDateAndTimeInputType.h │ │ ├── BaseClickableWithKeyInputType.cpp │ │ ├── BaseClickableWithKeyInputType.h │ │ ├── BaseDateAndTimeInputType.cpp │ │ ├── BaseDateAndTimeInputType.h │ │ ├── BaseTextInputType.cpp │ │ ├── BaseTextInputType.h │ │ ├── ButtonInputType.cpp │ │ ├── ButtonInputType.h │ │ ├── CachedHTMLCollection.h │ │ ├── CanvasBase.cpp │ │ ├── CanvasBase.h │ │ ├── CheckboxInputType.cpp │ │ ├── CheckboxInputType.h │ │ ├── CollectionTraversal.h │ │ ├── CollectionType.h │ │ ├── ColorInputType.cpp │ │ ├── ColorInputType.h │ │ ├── CustomPaintCanvas.cpp │ │ ├── CustomPaintCanvas.h │ │ ├── DOMFormData.cpp │ │ ├── DOMFormData.h │ │ ├── DOMFormData.idl │ │ ├── DOMTokenList.cpp │ │ ├── DOMTokenList.h │ │ ├── DOMTokenList.idl │ │ ├── DOMURL.cpp │ │ ├── DOMURL.h │ │ ├── DOMURL.idl │ │ ├── DataListSuggestionInformation.h │ │ ├── DateInputType.cpp │ │ ├── DateInputType.h │ │ ├── DateTimeInputType.cpp │ │ ├── DateTimeInputType.h │ │ ├── DateTimeLocalInputType.cpp │ │ ├── DateTimeLocalInputType.h │ │ ├── EmailInputType.cpp │ │ ├── EmailInputType.h │ │ ├── FTPDirectoryDocument.cpp │ │ ├── FTPDirectoryDocument.h │ │ ├── FeaturePolicy.cpp │ │ ├── FeaturePolicy.h │ │ ├── FileInputType.cpp │ │ ├── FileInputType.h │ │ ├── FileListCreator.cpp │ │ ├── FileListCreator.h │ │ ├── FormAssociatedElement.cpp │ │ ├── FormAssociatedElement.h │ │ ├── FormController.cpp │ │ ├── FormController.h │ │ ├── FormNamedItem.h │ │ ├── GenericCachedHTMLCollection.cpp │ │ ├── GenericCachedHTMLCollection.h │ │ ├── HTMLAllCollection.cpp │ │ ├── HTMLAllCollection.h │ │ ├── HTMLAllCollection.idl │ │ ├── HTMLAnchorElement.cpp │ │ ├── HTMLAnchorElement.h │ │ ├── HTMLAnchorElement.idl │ │ ├── HTMLAppletElement.cpp │ │ ├── HTMLAppletElement.h │ │ ├── HTMLAppletElement.idl │ │ ├── HTMLAreaElement.cpp │ │ ├── HTMLAreaElement.h │ │ ├── HTMLAreaElement.idl │ │ ├── HTMLAttachmentElement.cpp │ │ ├── HTMLAttachmentElement.h │ │ ├── HTMLAttachmentElement.idl │ │ ├── HTMLAttributeNames.in │ │ ├── HTMLAudioElement.cpp │ │ ├── HTMLAudioElement.h │ │ ├── HTMLAudioElement.idl │ │ ├── HTMLBDIElement.cpp │ │ ├── HTMLBDIElement.h │ │ ├── HTMLBRElement.cpp │ │ ├── HTMLBRElement.h │ │ ├── HTMLBRElement.idl │ │ ├── HTMLBaseElement.cpp │ │ ├── HTMLBaseElement.h │ │ ├── HTMLBaseElement.idl │ │ ├── HTMLBodyElement.cpp │ │ ├── HTMLBodyElement.h │ │ ├── HTMLBodyElement.idl │ │ ├── HTMLButtonElement.cpp │ │ ├── HTMLButtonElement.h │ │ ├── HTMLButtonElement.idl │ │ ├── HTMLCanvasElement.cpp │ │ ├── HTMLCanvasElement.h │ │ ├── HTMLCanvasElement.idl │ │ ├── HTMLCollection.cpp │ │ ├── HTMLCollection.h │ │ ├── HTMLCollection.idl │ │ ├── HTMLDListElement.cpp │ │ ├── HTMLDListElement.h │ │ ├── HTMLDListElement.idl │ │ ├── HTMLDataElement.cpp │ │ ├── HTMLDataElement.h │ │ ├── HTMLDataElement.idl │ │ ├── HTMLDataListElement.cpp │ │ ├── HTMLDataListElement.h │ │ ├── HTMLDataListElement.idl │ │ ├── HTMLDetailsElement.cpp │ │ ├── HTMLDetailsElement.h │ │ ├── HTMLDetailsElement.idl │ │ ├── HTMLDirectoryElement.cpp │ │ ├── HTMLDirectoryElement.h │ │ ├── HTMLDirectoryElement.idl │ │ ├── HTMLDivElement.cpp │ │ ├── HTMLDivElement.h │ │ ├── HTMLDivElement.idl │ │ ├── HTMLDocument.cpp │ │ ├── HTMLDocument.h │ │ ├── HTMLDocument.idl │ │ ├── HTMLElement.cpp │ │ ├── HTMLElement.h │ │ ├── HTMLElement.idl │ │ ├── HTMLEmbedElement.cpp │ │ ├── HTMLEmbedElement.h │ │ ├── HTMLEmbedElement.idl │ │ ├── HTMLFieldSetElement.cpp │ │ ├── HTMLFieldSetElement.h │ │ ├── HTMLFieldSetElement.idl │ │ ├── HTMLFontElement.cpp │ │ ├── HTMLFontElement.h │ │ ├── HTMLFontElement.idl │ │ ├── HTMLFormControlElement.cpp │ │ ├── HTMLFormControlElement.h │ │ ├── HTMLFormControlElementWithState.cpp │ │ ├── HTMLFormControlElementWithState.h │ │ ├── HTMLFormControlsCollection.cpp │ │ ├── HTMLFormControlsCollection.h │ │ ├── HTMLFormControlsCollection.idl │ │ ├── HTMLFormElement.cpp │ │ ├── HTMLFormElement.h │ │ ├── HTMLFormElement.idl │ │ ├── HTMLFrameElement.cpp │ │ ├── HTMLFrameElement.h │ │ ├── HTMLFrameElement.idl │ │ ├── HTMLFrameElementBase.cpp │ │ ├── HTMLFrameElementBase.h │ │ ├── HTMLFrameOwnerElement.cpp │ │ ├── HTMLFrameOwnerElement.h │ │ ├── HTMLFrameSetElement.cpp │ │ ├── HTMLFrameSetElement.h │ │ ├── HTMLFrameSetElement.idl │ │ ├── HTMLHRElement.cpp │ │ ├── HTMLHRElement.h │ │ ├── HTMLHRElement.idl │ │ ├── HTMLHeadElement.cpp │ │ ├── HTMLHeadElement.h │ │ ├── HTMLHeadElement.idl │ │ ├── HTMLHeadingElement.cpp │ │ ├── HTMLHeadingElement.h │ │ ├── HTMLHeadingElement.idl │ │ ├── HTMLHtmlElement.cpp │ │ ├── HTMLHtmlElement.h │ │ ├── HTMLHtmlElement.idl │ │ ├── HTMLHyperlinkElementUtils.idl │ │ ├── HTMLIFrameElement.cpp │ │ ├── HTMLIFrameElement.h │ │ ├── HTMLIFrameElement.idl │ │ ├── HTMLImageElement.cpp │ │ ├── HTMLImageElement.h │ │ ├── HTMLImageElement.idl │ │ ├── HTMLImageLoader.cpp │ │ ├── HTMLImageLoader.h │ │ ├── HTMLInputElement.cpp │ │ ├── HTMLInputElement.h │ │ ├── HTMLInputElement.idl │ │ ├── HTMLKeygenElement.cpp │ │ ├── HTMLKeygenElement.h │ │ ├── HTMLKeygenElement.idl │ │ ├── HTMLLIElement.cpp │ │ ├── HTMLLIElement.h │ │ ├── HTMLLIElement.idl │ │ ├── HTMLLabelElement.cpp │ │ ├── HTMLLabelElement.h │ │ ├── HTMLLabelElement.idl │ │ ├── HTMLLegendElement.cpp │ │ ├── HTMLLegendElement.h │ │ ├── HTMLLegendElement.idl │ │ ├── HTMLLinkElement.cpp │ │ ├── HTMLLinkElement.h │ │ ├── HTMLLinkElement.idl │ │ ├── HTMLMapElement.cpp │ │ ├── HTMLMapElement.h │ │ ├── HTMLMapElement.idl │ │ ├── HTMLMarqueeElement.cpp │ │ ├── HTMLMarqueeElement.h │ │ ├── HTMLMarqueeElement.idl │ │ ├── HTMLMediaElement.cpp │ │ ├── HTMLMediaElement.h │ │ ├── HTMLMediaElement.idl │ │ ├── HTMLMediaElementEnums.h │ │ ├── HTMLMenuElement.cpp │ │ ├── HTMLMenuElement.h │ │ ├── HTMLMenuElement.idl │ │ ├── HTMLMenuItemElement.cpp │ │ ├── HTMLMenuItemElement.h │ │ ├── HTMLMenuItemElement.idl │ │ ├── HTMLMetaElement.cpp │ │ ├── HTMLMetaElement.h │ │ ├── HTMLMetaElement.idl │ │ ├── HTMLMeterElement.cpp │ │ ├── HTMLMeterElement.h │ │ ├── HTMLMeterElement.idl │ │ ├── HTMLModElement.cpp │ │ ├── HTMLModElement.h │ │ ├── HTMLModElement.idl │ │ ├── HTMLNameCollection.cpp │ │ ├── HTMLNameCollection.h │ │ ├── HTMLOListElement.cpp │ │ ├── HTMLOListElement.h │ │ ├── HTMLOListElement.idl │ │ ├── HTMLObjectElement.cpp │ │ ├── HTMLObjectElement.h │ │ ├── HTMLObjectElement.idl │ │ ├── HTMLOptGroupElement.cpp │ │ ├── HTMLOptGroupElement.h │ │ ├── HTMLOptGroupElement.idl │ │ ├── HTMLOptionElement.cpp │ │ ├── HTMLOptionElement.h │ │ ├── HTMLOptionElement.idl │ │ ├── HTMLOptionsCollection.cpp │ │ ├── HTMLOptionsCollection.h │ │ ├── HTMLOptionsCollection.idl │ │ ├── HTMLOutputElement.cpp │ │ ├── HTMLOutputElement.h │ │ ├── HTMLOutputElement.idl │ │ ├── HTMLParagraphElement.cpp │ │ ├── HTMLParagraphElement.h │ │ ├── HTMLParagraphElement.idl │ │ ├── HTMLParamElement.cpp │ │ ├── HTMLParamElement.h │ │ ├── HTMLParamElement.idl │ │ ├── HTMLPictureElement.cpp │ │ ├── HTMLPictureElement.h │ │ ├── HTMLPictureElement.idl │ │ ├── HTMLPlugInElement.cpp │ │ ├── HTMLPlugInElement.h │ │ ├── HTMLPlugInImageElement.cpp │ │ ├── HTMLPlugInImageElement.h │ │ ├── HTMLPreElement.cpp │ │ ├── HTMLPreElement.h │ │ ├── HTMLPreElement.idl │ │ ├── HTMLProgressElement.cpp │ │ ├── HTMLProgressElement.h │ │ ├── HTMLProgressElement.idl │ │ ├── HTMLQuoteElement.cpp │ │ ├── HTMLQuoteElement.h │ │ ├── HTMLQuoteElement.idl │ │ ├── HTMLScriptElement.cpp │ │ ├── HTMLScriptElement.h │ │ ├── HTMLScriptElement.idl │ │ ├── HTMLSelectElement.cpp │ │ ├── HTMLSelectElement.h │ │ ├── HTMLSelectElement.idl │ │ ├── HTMLSelectElementWin.cpp │ │ ├── HTMLSlotElement.cpp │ │ ├── HTMLSlotElement.h │ │ ├── HTMLSlotElement.idl │ │ ├── HTMLSourceElement.cpp │ │ ├── HTMLSourceElement.h │ │ ├── HTMLSourceElement.idl │ │ ├── HTMLSpanElement.cpp │ │ ├── HTMLSpanElement.h │ │ ├── HTMLSpanElement.idl │ │ ├── HTMLStyleElement.cpp │ │ ├── HTMLStyleElement.h │ │ ├── HTMLStyleElement.idl │ │ ├── HTMLSummaryElement.cpp │ │ ├── HTMLSummaryElement.h │ │ ├── HTMLTableCaptionElement.cpp │ │ ├── HTMLTableCaptionElement.h │ │ ├── HTMLTableCaptionElement.idl │ │ ├── HTMLTableCellElement.cpp │ │ ├── HTMLTableCellElement.h │ │ ├── HTMLTableCellElement.idl │ │ ├── HTMLTableColElement.cpp │ │ ├── HTMLTableColElement.h │ │ ├── HTMLTableColElement.idl │ │ ├── HTMLTableElement.cpp │ │ ├── HTMLTableElement.h │ │ ├── HTMLTableElement.idl │ │ ├── HTMLTablePartElement.cpp │ │ ├── HTMLTablePartElement.h │ │ ├── HTMLTableRowElement.cpp │ │ ├── HTMLTableRowElement.h │ │ ├── HTMLTableRowElement.idl │ │ ├── HTMLTableRowsCollection.cpp │ │ ├── HTMLTableRowsCollection.h │ │ ├── HTMLTableSectionElement.cpp │ │ ├── HTMLTableSectionElement.h │ │ ├── HTMLTableSectionElement.idl │ │ ├── HTMLTagNames.in │ │ ├── HTMLTemplateElement.cpp │ │ ├── HTMLTemplateElement.h │ │ ├── HTMLTemplateElement.idl │ │ ├── HTMLTextAreaElement.cpp │ │ ├── HTMLTextAreaElement.h │ │ ├── HTMLTextAreaElement.idl │ │ ├── HTMLTextFormControlElement.cpp │ │ ├── HTMLTextFormControlElement.h │ │ ├── HTMLTimeElement.cpp │ │ ├── HTMLTimeElement.h │ │ ├── HTMLTimeElement.idl │ │ ├── HTMLTitleElement.cpp │ │ ├── HTMLTitleElement.h │ │ ├── HTMLTitleElement.idl │ │ ├── HTMLTrackElement.cpp │ │ ├── HTMLTrackElement.h │ │ ├── HTMLTrackElement.idl │ │ ├── HTMLUListElement.cpp │ │ ├── HTMLUListElement.h │ │ ├── HTMLUListElement.idl │ │ ├── HTMLUnknownElement.cpp │ │ ├── HTMLUnknownElement.h │ │ ├── HTMLUnknownElement.idl │ │ ├── HTMLVideoElement.cpp │ │ ├── HTMLVideoElement.h │ │ ├── HTMLVideoElement.idl │ │ ├── HTMLWBRElement.cpp │ │ ├── HTMLWBRElement.h │ │ ├── HiddenInputType.cpp │ │ ├── HiddenInputType.h │ │ ├── ImageBitmap.cpp │ │ ├── ImageBitmap.h │ │ ├── ImageBitmap.idl │ │ ├── ImageBitmapOptions.h │ │ ├── ImageBitmapOptions.idl │ │ ├── ImageData.cpp │ │ ├── ImageData.h │ │ ├── ImageData.idl │ │ ├── ImageDocument.cpp │ │ ├── ImageDocument.h │ │ ├── ImageInputType.cpp │ │ ├── ImageInputType.h │ │ ├── InputMode.cpp │ │ ├── InputMode.h │ │ ├── InputType.cpp │ │ ├── InputType.h │ │ ├── InputTypeNames.cpp │ │ ├── InputTypeNames.h │ │ ├── LabelableElement.cpp │ │ ├── LabelableElement.h │ │ ├── LabelsNodeList.cpp │ │ ├── LabelsNodeList.h │ │ ├── LinkIconCollector.cpp │ │ ├── LinkIconCollector.h │ │ ├── LinkIconType.h │ │ ├── LinkRelAttribute.cpp │ │ ├── LinkRelAttribute.h │ │ ├── MediaController.cpp │ │ ├── MediaController.h │ │ ├── MediaController.idl │ │ ├── MediaControllerInterface.h │ │ ├── MediaDocument.cpp │ │ ├── MediaDocument.h │ │ ├── MediaElementSession.cpp │ │ ├── MediaElementSession.h │ │ ├── MediaEncryptedEvent.cpp │ │ ├── MediaEncryptedEvent.h │ │ ├── MediaEncryptedEvent.idl │ │ ├── MediaEncryptedEventInit.h │ │ ├── MediaError.h │ │ ├── MediaError.idl │ │ ├── MediaFragmentURIParser.cpp │ │ ├── MediaFragmentURIParser.h │ │ ├── MonthInputType.cpp │ │ ├── MonthInputType.h │ │ ├── NumberInputType.cpp │ │ ├── NumberInputType.h │ │ ├── OffscreenCanvas.cpp │ │ ├── OffscreenCanvas.h │ │ ├── OffscreenCanvas.idl │ │ ├── PasswordInputType.cpp │ │ ├── PasswordInputType.h │ │ ├── PluginDocument.cpp │ │ ├── PluginDocument.h │ │ ├── PublicURLManager.cpp │ │ ├── PublicURLManager.h │ │ ├── RadioInputType.cpp │ │ ├── RadioInputType.h │ │ ├── RadioNodeList.cpp │ │ ├── RadioNodeList.h │ │ ├── RadioNodeList.idl │ │ ├── RangeInputType.cpp │ │ ├── RangeInputType.h │ │ ├── ResetInputType.cpp │ │ ├── ResetInputType.h │ │ ├── RubyElement.cpp │ │ ├── RubyElement.h │ │ ├── RubyTextElement.cpp │ │ ├── RubyTextElement.h │ │ ├── SearchInputType.cpp │ │ ├── SearchInputType.h │ │ ├── StepRange.cpp │ │ ├── StepRange.h │ │ ├── SubmitInputType.cpp │ │ ├── SubmitInputType.h │ │ ├── TelephoneInputType.cpp │ │ ├── TelephoneInputType.h │ │ ├── TextDocument.cpp │ │ ├── TextDocument.h │ │ ├── TextFieldInputType.cpp │ │ ├── TextFieldInputType.h │ │ ├── TextInputType.cpp │ │ ├── TextInputType.h │ │ ├── TextMetrics.h │ │ ├── TextMetrics.idl │ │ ├── TimeInputType.cpp │ │ ├── TimeInputType.h │ │ ├── TimeRanges.cpp │ │ ├── TimeRanges.h │ │ ├── TimeRanges.idl │ │ ├── TypeAhead.cpp │ │ ├── TypeAhead.h │ │ ├── URLInputType.cpp │ │ ├── URLInputType.h │ │ ├── URLRegistry.h │ │ ├── URLSearchParams.cpp │ │ ├── URLSearchParams.h │ │ ├── URLSearchParams.idl │ │ ├── URLUtils.h │ │ ├── ValidationMessage.cpp │ │ ├── ValidationMessage.h │ │ ├── ValidityState.h │ │ ├── ValidityState.idl │ │ ├── VoidCallback.h │ │ ├── VoidCallback.idl │ │ ├── WebKitMediaKeyError.h │ │ ├── WebKitMediaKeyError.idl │ │ ├── WeekInputType.cpp │ │ ├── WeekInputType.h │ │ ├── canvas │ │ │ ├── ANGLEInstancedArrays.cpp │ │ │ ├── ANGLEInstancedArrays.h │ │ │ ├── ANGLEInstancedArrays.idl │ │ │ ├── CanvasCompositing.idl │ │ │ ├── CanvasDirection.h │ │ │ ├── CanvasDirection.idl │ │ │ ├── CanvasDrawImage.idl │ │ │ ├── CanvasDrawPath.idl │ │ │ ├── CanvasFillRule.h │ │ │ ├── CanvasFillRule.idl │ │ │ ├── CanvasFillStrokeStyles.idl │ │ │ ├── CanvasFilters.idl │ │ │ ├── CanvasGradient.cpp │ │ │ ├── CanvasGradient.h │ │ │ ├── CanvasGradient.idl │ │ │ ├── CanvasImageData.idl │ │ │ ├── CanvasImageSmoothing.idl │ │ │ ├── CanvasLineCap.h │ │ │ ├── CanvasLineCap.idl │ │ │ ├── CanvasLineJoin.h │ │ │ ├── CanvasLineJoin.idl │ │ │ ├── CanvasPath.cpp │ │ │ ├── CanvasPath.h │ │ │ ├── CanvasPath.idl │ │ │ ├── CanvasPathDrawingStyles.idl │ │ │ ├── CanvasPattern.cpp │ │ │ ├── CanvasPattern.h │ │ │ ├── CanvasPattern.idl │ │ │ ├── CanvasRect.idl │ │ │ ├── CanvasRenderingContext.cpp │ │ │ ├── CanvasRenderingContext.h │ │ │ ├── CanvasRenderingContext2D.cpp │ │ │ ├── CanvasRenderingContext2D.h │ │ │ ├── CanvasRenderingContext2D.idl │ │ │ ├── CanvasRenderingContext2DBase.cpp │ │ │ ├── CanvasRenderingContext2DBase.h │ │ │ ├── CanvasShadowStyles.idl │ │ │ ├── CanvasState.idl │ │ │ ├── CanvasStyle.cpp │ │ │ ├── CanvasStyle.h │ │ │ ├── CanvasText.idl │ │ │ ├── CanvasTextAlign.h │ │ │ ├── CanvasTextAlign.idl │ │ │ ├── CanvasTextBaseline.h │ │ │ ├── CanvasTextBaseline.idl │ │ │ ├── CanvasTextDrawingStyles.idl │ │ │ ├── CanvasTransform.idl │ │ │ ├── CanvasUserInterface.idl │ │ │ ├── EXTBlendMinMax.cpp │ │ │ ├── EXTBlendMinMax.h │ │ │ ├── EXTBlendMinMax.idl │ │ │ ├── EXTFragDepth.cpp │ │ │ ├── EXTFragDepth.h │ │ │ ├── EXTFragDepth.idl │ │ │ ├── EXTShaderTextureLOD.cpp │ │ │ ├── EXTShaderTextureLOD.h │ │ │ ├── EXTShaderTextureLOD.idl │ │ │ ├── EXTTextureFilterAnisotropic.cpp │ │ │ ├── EXTTextureFilterAnisotropic.h │ │ │ ├── EXTTextureFilterAnisotropic.idl │ │ │ ├── EXTsRGB.cpp │ │ │ ├── EXTsRGB.h │ │ │ ├── EXTsRGB.idl │ │ │ ├── GPUBasedCanvasRenderingContext.h │ │ │ ├── ImageBitmapRenderingContext.cpp │ │ │ ├── ImageBitmapRenderingContext.h │ │ │ ├── ImageBitmapRenderingContext.idl │ │ │ ├── ImageBitmapRenderingContextSettings.h │ │ │ ├── ImageBitmapRenderingContextSettings.idl │ │ │ ├── ImageSmoothingQuality.h │ │ │ ├── ImageSmoothingQuality.idl │ │ │ ├── OESElementIndexUint.cpp │ │ │ ├── OESElementIndexUint.h │ │ │ ├── OESElementIndexUint.idl │ │ │ ├── OESStandardDerivatives.cpp │ │ │ ├── OESStandardDerivatives.h │ │ │ ├── OESStandardDerivatives.idl │ │ │ ├── OESTextureFloat.cpp │ │ │ ├── OESTextureFloat.h │ │ │ ├── OESTextureFloat.idl │ │ │ ├── OESTextureFloatLinear.cpp │ │ │ ├── OESTextureFloatLinear.h │ │ │ ├── OESTextureFloatLinear.idl │ │ │ ├── OESTextureHalfFloat.cpp │ │ │ ├── OESTextureHalfFloat.h │ │ │ ├── OESTextureHalfFloat.idl │ │ │ ├── OESTextureHalfFloatLinear.cpp │ │ │ ├── OESTextureHalfFloatLinear.h │ │ │ ├── OESTextureHalfFloatLinear.idl │ │ │ ├── OESVertexArrayObject.cpp │ │ │ ├── OESVertexArrayObject.h │ │ │ ├── OESVertexArrayObject.idl │ │ │ ├── OffscreenCanvasRenderingContext2D.cpp │ │ │ ├── OffscreenCanvasRenderingContext2D.h │ │ │ ├── OffscreenCanvasRenderingContext2D.idl │ │ │ ├── PaintRenderingContext2D.cpp │ │ │ ├── PaintRenderingContext2D.h │ │ │ ├── PaintRenderingContext2D.idl │ │ │ ├── Path2D.cpp │ │ │ ├── Path2D.h │ │ │ ├── Path2D.idl │ │ │ ├── PlaceholderRenderingContext.cpp │ │ │ ├── PlaceholderRenderingContext.h │ │ │ ├── WebGL2RenderingContext.cpp │ │ │ ├── WebGL2RenderingContext.h │ │ │ ├── WebGL2RenderingContext.idl │ │ │ ├── WebGLActiveInfo.h │ │ │ ├── WebGLActiveInfo.idl │ │ │ ├── WebGLAny.h │ │ │ ├── WebGLBuffer.cpp │ │ │ ├── WebGLBuffer.h │ │ │ ├── WebGLBuffer.idl │ │ │ ├── WebGLCompressedTextureASTC.cpp │ │ │ ├── WebGLCompressedTextureASTC.h │ │ │ ├── WebGLCompressedTextureASTC.idl │ │ │ ├── WebGLCompressedTextureATC.cpp │ │ │ ├── WebGLCompressedTextureATC.h │ │ │ ├── WebGLCompressedTextureATC.idl │ │ │ ├── WebGLCompressedTexturePVRTC.cpp │ │ │ ├── WebGLCompressedTexturePVRTC.h │ │ │ ├── WebGLCompressedTexturePVRTC.idl │ │ │ ├── WebGLCompressedTextureS3TC.cpp │ │ │ ├── WebGLCompressedTextureS3TC.h │ │ │ ├── WebGLCompressedTextureS3TC.idl │ │ │ ├── WebGLContextAttributes.h │ │ │ ├── WebGLContextAttributes.idl │ │ │ ├── WebGLContextEvent.cpp │ │ │ ├── WebGLContextEvent.h │ │ │ ├── WebGLContextEvent.idl │ │ │ ├── WebGLContextGroup.cpp │ │ │ ├── WebGLContextGroup.h │ │ │ ├── WebGLContextObject.cpp │ │ │ ├── WebGLContextObject.h │ │ │ ├── WebGLDebugRendererInfo.cpp │ │ │ ├── WebGLDebugRendererInfo.h │ │ │ ├── WebGLDebugRendererInfo.idl │ │ │ ├── WebGLDebugShaders.cpp │ │ │ ├── WebGLDebugShaders.h │ │ │ ├── WebGLDebugShaders.idl │ │ │ ├── WebGLDepthTexture.cpp │ │ │ ├── WebGLDepthTexture.h │ │ │ ├── WebGLDepthTexture.idl │ │ │ ├── WebGLDrawBuffers.cpp │ │ │ ├── WebGLDrawBuffers.h │ │ │ ├── WebGLDrawBuffers.idl │ │ │ ├── WebGLExtension.cpp │ │ │ ├── WebGLExtension.h │ │ │ ├── WebGLFramebuffer.cpp │ │ │ ├── WebGLFramebuffer.h │ │ │ ├── WebGLFramebuffer.idl │ │ │ ├── WebGLLoseContext.cpp │ │ │ ├── WebGLLoseContext.h │ │ │ ├── WebGLLoseContext.idl │ │ │ ├── WebGLObject.cpp │ │ │ ├── WebGLObject.h │ │ │ ├── WebGLProgram.cpp │ │ │ ├── WebGLProgram.h │ │ │ ├── WebGLProgram.idl │ │ │ ├── WebGLQuery.cpp │ │ │ ├── WebGLQuery.h │ │ │ ├── WebGLQuery.idl │ │ │ ├── WebGLRenderbuffer.cpp │ │ │ ├── WebGLRenderbuffer.h │ │ │ ├── WebGLRenderbuffer.idl │ │ │ ├── WebGLRenderingContext.cpp │ │ │ ├── WebGLRenderingContext.h │ │ │ ├── WebGLRenderingContext.idl │ │ │ ├── WebGLRenderingContextBase.cpp │ │ │ ├── WebGLRenderingContextBase.h │ │ │ ├── WebGLRenderingContextBase.idl │ │ │ ├── WebGLSampler.cpp │ │ │ ├── WebGLSampler.h │ │ │ ├── WebGLSampler.idl │ │ │ ├── WebGLShader.cpp │ │ │ ├── WebGLShader.h │ │ │ ├── WebGLShader.idl │ │ │ ├── WebGLShaderPrecisionFormat.cpp │ │ │ ├── WebGLShaderPrecisionFormat.h │ │ │ ├── WebGLShaderPrecisionFormat.idl │ │ │ ├── WebGLSharedObject.cpp │ │ │ ├── WebGLSharedObject.h │ │ │ ├── WebGLSync.cpp │ │ │ ├── WebGLSync.h │ │ │ ├── WebGLSync.idl │ │ │ ├── WebGLTexture.cpp │ │ │ ├── WebGLTexture.h │ │ │ ├── WebGLTexture.idl │ │ │ ├── WebGLTransformFeedback.cpp │ │ │ ├── WebGLTransformFeedback.h │ │ │ ├── WebGLTransformFeedback.idl │ │ │ ├── WebGLUniformLocation.cpp │ │ │ ├── WebGLUniformLocation.h │ │ │ ├── WebGLUniformLocation.idl │ │ │ ├── WebGLVertexArrayObject.cpp │ │ │ ├── WebGLVertexArrayObject.h │ │ │ ├── WebGLVertexArrayObject.idl │ │ │ ├── WebGLVertexArrayObjectBase.cpp │ │ │ ├── WebGLVertexArrayObjectBase.h │ │ │ ├── WebGLVertexArrayObjectOES.cpp │ │ │ ├── WebGLVertexArrayObjectOES.h │ │ │ └── WebGLVertexArrayObjectOES.idl │ │ ├── forms │ │ │ ├── FileIconLoader.cpp │ │ │ └── FileIconLoader.h │ │ ├── parser │ │ │ ├── AtomicHTMLToken.h │ │ │ ├── CSSPreloadScanner.cpp │ │ │ ├── CSSPreloadScanner.h │ │ │ ├── HTMLConstructionSite.cpp │ │ │ ├── HTMLConstructionSite.h │ │ │ ├── HTMLDocumentParser.cpp │ │ │ ├── HTMLDocumentParser.h │ │ │ ├── HTMLElementStack.cpp │ │ │ ├── HTMLElementStack.h │ │ │ ├── HTMLEntityNames.in │ │ │ ├── HTMLEntityParser.cpp │ │ │ ├── HTMLEntityParser.h │ │ │ ├── HTMLEntitySearch.cpp │ │ │ ├── HTMLEntitySearch.h │ │ │ ├── HTMLEntityTable.h │ │ │ ├── HTMLFormattingElementList.cpp │ │ │ ├── HTMLFormattingElementList.h │ │ │ ├── HTMLInputStream.h │ │ │ ├── HTMLMetaCharsetParser.cpp │ │ │ ├── HTMLMetaCharsetParser.h │ │ │ ├── HTMLParserIdioms.cpp │ │ │ ├── HTMLParserIdioms.h │ │ │ ├── HTMLParserOptions.cpp │ │ │ ├── HTMLParserOptions.h │ │ │ ├── HTMLParserScheduler.cpp │ │ │ ├── HTMLParserScheduler.h │ │ │ ├── HTMLPreloadScanner.cpp │ │ │ ├── HTMLPreloadScanner.h │ │ │ ├── HTMLResourcePreloader.cpp │ │ │ ├── HTMLResourcePreloader.h │ │ │ ├── HTMLScriptRunner.cpp │ │ │ ├── HTMLScriptRunner.h │ │ │ ├── HTMLScriptRunnerHost.h │ │ │ ├── HTMLSourceTracker.cpp │ │ │ ├── HTMLSourceTracker.h │ │ │ ├── HTMLSrcsetParser.cpp │ │ │ ├── HTMLSrcsetParser.h │ │ │ ├── HTMLStackItem.h │ │ │ ├── HTMLToken.h │ │ │ ├── HTMLTokenizer.cpp │ │ │ ├── HTMLTokenizer.h │ │ │ ├── HTMLTreeBuilder.cpp │ │ │ ├── HTMLTreeBuilder.h │ │ │ ├── InputStreamPreprocessor.h │ │ │ ├── NestingLevelIncrementer.h │ │ │ ├── ParsingUtilities.h │ │ │ ├── TextDocumentParser.cpp │ │ │ ├── TextDocumentParser.h │ │ │ ├── XSSAuditor.cpp │ │ │ ├── XSSAuditor.h │ │ │ ├── XSSAuditorDelegate.cpp │ │ │ ├── XSSAuditorDelegate.h │ │ │ └── create-html-entity-table │ │ ├── shadow │ │ │ ├── AutoFillButtonElement.cpp │ │ │ ├── AutoFillButtonElement.h │ │ │ ├── DataListButtonElement.cpp │ │ │ ├── DataListButtonElement.h │ │ │ ├── DetailsMarkerControl.cpp │ │ │ ├── DetailsMarkerControl.h │ │ │ ├── ImageControlsRootElement.cpp │ │ │ ├── ImageControlsRootElement.h │ │ │ ├── MediaControlElementTypes.cpp │ │ │ ├── MediaControlElementTypes.h │ │ │ ├── MediaControlElements.cpp │ │ │ ├── MediaControlElements.h │ │ │ ├── MediaControls.cpp │ │ │ ├── MediaControls.h │ │ │ ├── ProgressShadowElement.cpp │ │ │ ├── ProgressShadowElement.h │ │ │ ├── SliderThumbElement.cpp │ │ │ ├── SliderThumbElement.h │ │ │ ├── SpinButtonElement.cpp │ │ │ ├── SpinButtonElement.h │ │ │ ├── TextControlInnerElements.cpp │ │ │ ├── TextControlInnerElements.h │ │ │ ├── YouTubeEmbedShadowElement.cpp │ │ │ ├── YouTubeEmbedShadowElement.h │ │ │ ├── mac │ │ │ │ ├── ImageControlsButtonElementMac.cpp │ │ │ │ ├── ImageControlsButtonElementMac.h │ │ │ │ ├── ImageControlsRootElementMac.cpp │ │ │ │ ├── ImageControlsRootElementMac.h │ │ │ │ └── imageControlsMac.css │ │ │ └── meterElementShadow.css │ │ └── track │ │ │ ├── AudioTrack.cpp │ │ │ ├── AudioTrack.h │ │ │ ├── AudioTrack.idl │ │ │ ├── AudioTrackList.cpp │ │ │ ├── AudioTrackList.h │ │ │ ├── AudioTrackList.idl │ │ │ ├── BufferedLineReader.cpp │ │ │ ├── BufferedLineReader.h │ │ │ ├── DataCue.cpp │ │ │ ├── DataCue.h │ │ │ ├── DataCue.idl │ │ │ ├── InbandDataTextTrack.cpp │ │ │ ├── InbandDataTextTrack.h │ │ │ ├── InbandGenericTextTrack.cpp │ │ │ ├── InbandGenericTextTrack.h │ │ │ ├── InbandTextTrack.cpp │ │ │ ├── InbandTextTrack.h │ │ │ ├── InbandWebVTTTextTrack.cpp │ │ │ ├── InbandWebVTTTextTrack.h │ │ │ ├── LoadableTextTrack.cpp │ │ │ ├── LoadableTextTrack.h │ │ │ ├── TextTrack.cpp │ │ │ ├── TextTrack.h │ │ │ ├── TextTrack.idl │ │ │ ├── TextTrackCue.cpp │ │ │ ├── TextTrackCue.h │ │ │ ├── TextTrackCue.idl │ │ │ ├── TextTrackCueGeneric.cpp │ │ │ ├── TextTrackCueGeneric.h │ │ │ ├── TextTrackCueGeneric.idl │ │ │ ├── TextTrackCueList.cpp │ │ │ ├── TextTrackCueList.h │ │ │ ├── TextTrackCueList.idl │ │ │ ├── TextTrackList.cpp │ │ │ ├── TextTrackList.h │ │ │ ├── TextTrackList.idl │ │ │ ├── TrackBase.cpp │ │ │ ├── TrackBase.h │ │ │ ├── TrackEvent.cpp │ │ │ ├── TrackEvent.h │ │ │ ├── TrackEvent.idl │ │ │ ├── TrackListBase.cpp │ │ │ ├── TrackListBase.h │ │ │ ├── VTTCue.cpp │ │ │ ├── VTTCue.h │ │ │ ├── VTTCue.idl │ │ │ ├── VTTRegion.cpp │ │ │ ├── VTTRegion.h │ │ │ ├── VTTRegion.idl │ │ │ ├── VTTRegionList.cpp │ │ │ ├── VTTRegionList.h │ │ │ ├── VTTRegionList.idl │ │ │ ├── VTTScanner.cpp │ │ │ ├── VTTScanner.h │ │ │ ├── VideoTrack.cpp │ │ │ ├── VideoTrack.h │ │ │ ├── VideoTrack.idl │ │ │ ├── VideoTrackList.cpp │ │ │ ├── VideoTrackList.h │ │ │ ├── VideoTrackList.idl │ │ │ ├── WebVTTElement.cpp │ │ │ ├── WebVTTElement.h │ │ │ ├── WebVTTParser.cpp │ │ │ ├── WebVTTParser.h │ │ │ ├── WebVTTToken.h │ │ │ ├── WebVTTTokenizer.cpp │ │ │ └── WebVTTTokenizer.h │ ├── icu │ │ ├── LICENSE │ │ └── README │ ├── inspector │ │ ├── CommandLineAPIHost.cpp │ │ ├── CommandLineAPIHost.h │ │ ├── CommandLineAPIHost.idl │ │ ├── CommandLineAPIModule.cpp │ │ ├── CommandLineAPIModule.h │ │ ├── CommandLineAPIModuleSource.js │ │ ├── DOMEditor.cpp │ │ ├── DOMEditor.h │ │ ├── DOMPatchSupport.cpp │ │ ├── DOMPatchSupport.h │ │ ├── InspectorAuditAccessibilityObject.cpp │ │ ├── InspectorAuditAccessibilityObject.h │ │ ├── InspectorAuditAccessibilityObject.idl │ │ ├── InspectorAuditDOMObject.cpp │ │ ├── InspectorAuditDOMObject.h │ │ ├── InspectorAuditDOMObject.idl │ │ ├── InspectorAuditResourcesObject.cpp │ │ ├── InspectorAuditResourcesObject.h │ │ ├── InspectorAuditResourcesObject.idl │ │ ├── InspectorCanvas.cpp │ │ ├── InspectorCanvas.h │ │ ├── InspectorClient.cpp │ │ ├── InspectorClient.h │ │ ├── InspectorController.cpp │ │ ├── InspectorController.h │ │ ├── InspectorDatabaseResource.cpp │ │ ├── InspectorDatabaseResource.h │ │ ├── InspectorFrontendClient.h │ │ ├── InspectorFrontendClientLocal.cpp │ │ ├── InspectorFrontendClientLocal.h │ │ ├── InspectorFrontendHost.cpp │ │ ├── InspectorFrontendHost.h │ │ ├── InspectorFrontendHost.idl │ │ ├── InspectorHistory.cpp │ │ ├── InspectorHistory.h │ │ ├── InspectorInstrumentation.cpp │ │ ├── InspectorInstrumentation.h │ │ ├── InspectorInstrumentationCookie.cpp │ │ ├── InspectorInstrumentationCookie.h │ │ ├── InspectorNodeFinder.cpp │ │ ├── InspectorNodeFinder.h │ │ ├── InspectorOverlay.cpp │ │ ├── InspectorOverlay.h │ │ ├── InspectorShaderProgram.cpp │ │ ├── InspectorShaderProgram.h │ │ ├── InspectorStyleSheet.cpp │ │ ├── InspectorStyleSheet.h │ │ ├── InspectorWebAgentBase.h │ │ ├── InstrumentingAgents.cpp │ │ ├── InstrumentingAgents.h │ │ ├── NetworkResourcesData.cpp │ │ ├── NetworkResourcesData.h │ │ ├── PageScriptDebugServer.cpp │ │ ├── PageScriptDebugServer.h │ │ ├── RecordingSwizzleTypes.h │ │ ├── TimelineRecordFactory.cpp │ │ ├── TimelineRecordFactory.h │ │ ├── WebInjectedScriptHost.cpp │ │ ├── WebInjectedScriptHost.h │ │ ├── WebInjectedScriptManager.cpp │ │ ├── WebInjectedScriptManager.h │ │ ├── WorkerInspectorController.cpp │ │ ├── WorkerInspectorController.h │ │ ├── WorkerScriptDebugServer.cpp │ │ ├── WorkerScriptDebugServer.h │ │ ├── WorkerToPageFrontendChannel.h │ │ └── agents │ │ │ ├── InspectorApplicationCacheAgent.cpp │ │ │ ├── InspectorApplicationCacheAgent.h │ │ │ ├── InspectorCPUProfilerAgent.cpp │ │ │ ├── InspectorCPUProfilerAgent.h │ │ │ ├── InspectorCSSAgent.cpp │ │ │ ├── InspectorCSSAgent.h │ │ │ ├── InspectorCanvasAgent.cpp │ │ │ ├── InspectorCanvasAgent.h │ │ │ ├── InspectorDOMAgent.cpp │ │ │ ├── InspectorDOMAgent.h │ │ │ ├── InspectorDOMDebuggerAgent.cpp │ │ │ ├── InspectorDOMDebuggerAgent.h │ │ │ ├── InspectorDOMStorageAgent.cpp │ │ │ ├── InspectorDOMStorageAgent.h │ │ │ ├── InspectorDatabaseAgent.cpp │ │ │ ├── InspectorDatabaseAgent.h │ │ │ ├── InspectorIndexedDBAgent.cpp │ │ │ ├── InspectorIndexedDBAgent.h │ │ │ ├── InspectorLayerTreeAgent.cpp │ │ │ ├── InspectorLayerTreeAgent.h │ │ │ ├── InspectorMemoryAgent.cpp │ │ │ ├── InspectorMemoryAgent.h │ │ │ ├── InspectorNetworkAgent.cpp │ │ │ ├── InspectorNetworkAgent.h │ │ │ ├── InspectorPageAgent.cpp │ │ │ ├── InspectorPageAgent.h │ │ │ ├── InspectorTimelineAgent.cpp │ │ │ ├── InspectorTimelineAgent.h │ │ │ ├── InspectorWorkerAgent.cpp │ │ │ ├── InspectorWorkerAgent.h │ │ │ ├── WebConsoleAgent.cpp │ │ │ ├── WebConsoleAgent.h │ │ │ ├── WebDebuggerAgent.cpp │ │ │ ├── WebDebuggerAgent.h │ │ │ ├── WebHeapAgent.cpp │ │ │ ├── WebHeapAgent.h │ │ │ ├── page │ │ │ ├── PageAuditAgent.cpp │ │ │ ├── PageAuditAgent.h │ │ │ ├── PageConsoleAgent.cpp │ │ │ ├── PageConsoleAgent.h │ │ │ ├── PageDebuggerAgent.cpp │ │ │ ├── PageDebuggerAgent.h │ │ │ ├── PageHeapAgent.cpp │ │ │ ├── PageHeapAgent.h │ │ │ ├── PageNetworkAgent.cpp │ │ │ ├── PageNetworkAgent.h │ │ │ ├── PageRuntimeAgent.cpp │ │ │ └── PageRuntimeAgent.h │ │ │ └── worker │ │ │ ├── ServiceWorkerAgent.cpp │ │ │ ├── ServiceWorkerAgent.h │ │ │ ├── WorkerAuditAgent.cpp │ │ │ ├── WorkerAuditAgent.h │ │ │ ├── WorkerConsoleAgent.cpp │ │ │ ├── WorkerConsoleAgent.h │ │ │ ├── WorkerDebuggerAgent.cpp │ │ │ ├── WorkerDebuggerAgent.h │ │ │ ├── WorkerNetworkAgent.cpp │ │ │ ├── WorkerNetworkAgent.h │ │ │ ├── WorkerRuntimeAgent.cpp │ │ │ └── WorkerRuntimeAgent.h │ ├── layout │ │ ├── FormattingContext.cpp │ │ ├── FormattingContext.h │ │ ├── FormattingContextGeometry.cpp │ │ ├── FormattingContextQuirks.cpp │ │ ├── FormattingState.cpp │ │ ├── FormattingState.h │ │ ├── Invalidation.h │ │ ├── LayoutState.cpp │ │ ├── LayoutState.h │ │ ├── LayoutUnits.h │ │ ├── MarginTypes.h │ │ ├── Verification.cpp │ │ ├── blockformatting │ │ │ ├── BlockFormattingContext.cpp │ │ │ ├── BlockFormattingContext.h │ │ │ ├── BlockFormattingContextGeometry.cpp │ │ │ ├── BlockFormattingContextQuirks.cpp │ │ │ ├── BlockFormattingState.cpp │ │ │ ├── BlockFormattingState.h │ │ │ ├── BlockInvalidation.cpp │ │ │ ├── BlockInvalidation.h │ │ │ └── BlockMarginCollapse.cpp │ │ ├── displaytree │ │ │ ├── DisplayBox.cpp │ │ │ ├── DisplayBox.h │ │ │ ├── DisplayRect.h │ │ │ └── DisplayRun.h │ │ ├── floats │ │ │ ├── FloatAvoider.cpp │ │ │ ├── FloatAvoider.h │ │ │ ├── FloatBox.cpp │ │ │ ├── FloatBox.h │ │ │ ├── FloatingContext.cpp │ │ │ ├── FloatingContext.h │ │ │ ├── FloatingState.cpp │ │ │ └── FloatingState.h │ │ ├── inlineformatting │ │ │ ├── InlineFormattingContext.cpp │ │ │ ├── InlineFormattingContext.h │ │ │ ├── InlineFormattingContextGeometry.cpp │ │ │ ├── InlineFormattingContextLineLayout.cpp │ │ │ ├── InlineFormattingContextQuirks.cpp │ │ │ ├── InlineFormattingState.cpp │ │ │ ├── InlineFormattingState.h │ │ │ ├── InlineInvalidation.cpp │ │ │ ├── InlineInvalidation.h │ │ │ ├── InlineItem.h │ │ │ ├── InlineLine.cpp │ │ │ ├── InlineLine.h │ │ │ ├── InlineLineBox.h │ │ │ ├── InlineLineBreaker.cpp │ │ │ ├── InlineLineBreaker.h │ │ │ ├── InlineTextItem.cpp │ │ │ ├── InlineTextItem.h │ │ │ └── text │ │ │ │ ├── TextUtil.cpp │ │ │ │ └── TextUtil.h │ │ └── layouttree │ │ │ ├── LayoutAncestorIterator.h │ │ │ ├── LayoutBlockContainer.cpp │ │ │ ├── LayoutBlockContainer.h │ │ │ ├── LayoutBox.cpp │ │ │ ├── LayoutBox.h │ │ │ ├── LayoutChildIterator.h │ │ │ ├── LayoutContainer.cpp │ │ │ ├── LayoutContainer.h │ │ │ ├── LayoutDescendantIterator.h │ │ │ ├── LayoutInlineBox.cpp │ │ │ ├── LayoutInlineBox.h │ │ │ ├── LayoutInlineContainer.cpp │ │ │ ├── LayoutInlineContainer.h │ │ │ ├── LayoutIterator.h │ │ │ ├── LayoutLineBreakBox.cpp │ │ │ ├── LayoutLineBreakBox.h │ │ │ ├── LayoutReplaced.cpp │ │ │ ├── LayoutReplaced.h │ │ │ ├── LayoutTreeBuilder.cpp │ │ │ └── LayoutTreeBuilder.h │ ├── loader │ │ ├── AdClickAttribution.cpp │ │ ├── AdClickAttribution.h │ │ ├── ApplicationManifestLoader.cpp │ │ ├── ApplicationManifestLoader.h │ │ ├── CanvasActivityRecord.cpp │ │ ├── CanvasActivityRecord.h │ │ ├── ContentFilter.cpp │ │ ├── ContentFilter.h │ │ ├── CookieJar.cpp │ │ ├── CookieJar.h │ │ ├── CrossOriginAccessControl.cpp │ │ ├── CrossOriginAccessControl.h │ │ ├── CrossOriginPreflightChecker.cpp │ │ ├── CrossOriginPreflightChecker.h │ │ ├── CrossOriginPreflightResultCache.cpp │ │ ├── CrossOriginPreflightResultCache.h │ │ ├── CustomHeaderFields.cpp │ │ ├── CustomHeaderFields.h │ │ ├── DocumentLoader.cpp │ │ ├── DocumentLoader.h │ │ ├── DocumentThreadableLoader.cpp │ │ ├── DocumentThreadableLoader.h │ │ ├── DocumentWriter.cpp │ │ ├── DocumentWriter.h │ │ ├── EmptyClients.cpp │ │ ├── EmptyClients.h │ │ ├── EmptyFrameLoaderClient.h │ │ ├── FTPDirectoryParser.cpp │ │ ├── FTPDirectoryParser.h │ │ ├── FetchIdioms.cpp │ │ ├── FetchIdioms.h │ │ ├── FetchOptions.h │ │ ├── FormState.cpp │ │ ├── FormState.h │ │ ├── FormSubmission.cpp │ │ ├── FormSubmission.h │ │ ├── FrameLoadRequest.cpp │ │ ├── FrameLoadRequest.h │ │ ├── FrameLoader.cpp │ │ ├── FrameLoader.h │ │ ├── FrameLoaderClient.h │ │ ├── FrameLoaderStateMachine.cpp │ │ ├── FrameLoaderStateMachine.h │ │ ├── FrameLoaderTypes.h │ │ ├── FrameNetworkingContext.h │ │ ├── HTTPHeaderField.cpp │ │ ├── HTTPHeaderField.h │ │ ├── HeaderFieldTokenizer.cpp │ │ ├── HeaderFieldTokenizer.h │ │ ├── HistoryController.cpp │ │ ├── HistoryController.h │ │ ├── ImageLoader.cpp │ │ ├── ImageLoader.h │ │ ├── LinkHeader.cpp │ │ ├── LinkHeader.h │ │ ├── LinkLoader.cpp │ │ ├── LinkLoader.h │ │ ├── LinkLoaderClient.h │ │ ├── LinkPreloadResourceClients.cpp │ │ ├── LinkPreloadResourceClients.h │ │ ├── LoadTiming.cpp │ │ ├── LoadTiming.h │ │ ├── LoaderStrategy.cpp │ │ ├── LoaderStrategy.h │ │ ├── MediaResourceLoader.cpp │ │ ├── MediaResourceLoader.h │ │ ├── MixedContentChecker.cpp │ │ ├── MixedContentChecker.h │ │ ├── NavigationAction.cpp │ │ ├── NavigationAction.h │ │ ├── NavigationDisabler.h │ │ ├── NavigationScheduler.cpp │ │ ├── NavigationScheduler.h │ │ ├── NetscapePlugInStreamLoader.cpp │ │ ├── NetscapePlugInStreamLoader.h │ │ ├── PingLoader.cpp │ │ ├── PingLoader.h │ │ ├── PolicyChecker.cpp │ │ ├── PolicyChecker.h │ │ ├── ProgressTracker.cpp │ │ ├── ProgressTracker.h │ │ ├── ProgressTrackerClient.h │ │ ├── ResourceCryptographicDigest.cpp │ │ ├── ResourceCryptographicDigest.h │ │ ├── ResourceLoadInfo.cpp │ │ ├── ResourceLoadInfo.h │ │ ├── ResourceLoadNotifier.cpp │ │ ├── ResourceLoadNotifier.h │ │ ├── ResourceLoadObserver.cpp │ │ ├── ResourceLoadObserver.h │ │ ├── ResourceLoadStatistics.cpp │ │ ├── ResourceLoadStatistics.h │ │ ├── ResourceLoader.cpp │ │ ├── ResourceLoader.h │ │ ├── ResourceLoaderOptions.h │ │ ├── ResourceLoaderTypes.h │ │ ├── ResourceTiming.cpp │ │ ├── ResourceTiming.h │ │ ├── ResourceTimingInformation.cpp │ │ ├── ResourceTimingInformation.h │ │ ├── ServerTiming.cpp │ │ ├── ServerTiming.h │ │ ├── ServerTimingParser.cpp │ │ ├── ServerTimingParser.h │ │ ├── ShouldTreatAsContinuingLoad.h │ │ ├── SinkDocument.cpp │ │ ├── SinkDocument.h │ │ ├── SubframeLoader.cpp │ │ ├── SubframeLoader.h │ │ ├── SubresourceIntegrity.cpp │ │ ├── SubresourceIntegrity.h │ │ ├── SubresourceLoader.cpp │ │ ├── SubresourceLoader.h │ │ ├── SubstituteData.h │ │ ├── SubstituteResource.h │ │ ├── TextResourceDecoder.cpp │ │ ├── TextResourceDecoder.h │ │ ├── TextTrackLoader.cpp │ │ ├── TextTrackLoader.h │ │ ├── ThreadableLoader.cpp │ │ ├── ThreadableLoader.h │ │ ├── ThreadableLoaderClient.h │ │ ├── ThreadableLoaderClientWrapper.h │ │ ├── WorkerThreadableLoader.cpp │ │ ├── WorkerThreadableLoader.h │ │ ├── appcache │ │ │ ├── ApplicationCache.cpp │ │ │ ├── ApplicationCache.h │ │ │ ├── ApplicationCacheGroup.cpp │ │ │ ├── ApplicationCacheGroup.h │ │ │ ├── ApplicationCacheHost.cpp │ │ │ ├── ApplicationCacheHost.h │ │ │ ├── ApplicationCacheResource.cpp │ │ │ ├── ApplicationCacheResource.h │ │ │ ├── ApplicationCacheResourceLoader.cpp │ │ │ ├── ApplicationCacheResourceLoader.h │ │ │ ├── ApplicationCacheStorage.cpp │ │ │ ├── ApplicationCacheStorage.h │ │ │ ├── DOMApplicationCache.cpp │ │ │ ├── DOMApplicationCache.h │ │ │ ├── DOMApplicationCache.idl │ │ │ ├── ManifestParser.cpp │ │ │ └── ManifestParser.h │ │ ├── archive │ │ │ ├── Archive.cpp │ │ │ ├── Archive.h │ │ │ ├── ArchiveFactory.cpp │ │ │ ├── ArchiveFactory.h │ │ │ ├── ArchiveResource.cpp │ │ │ ├── ArchiveResource.h │ │ │ ├── ArchiveResourceCollection.cpp │ │ │ ├── ArchiveResourceCollection.h │ │ │ ├── cf │ │ │ │ ├── LegacyWebArchive.cpp │ │ │ │ ├── LegacyWebArchive.h │ │ │ │ └── LegacyWebArchiveMac.mm │ │ │ └── mhtml │ │ │ │ ├── MHTMLArchive.cpp │ │ │ │ ├── MHTMLArchive.h │ │ │ │ ├── MHTMLParser.cpp │ │ │ │ └── MHTMLParser.h │ │ ├── cache │ │ │ ├── CachePolicy.h │ │ │ ├── CachedApplicationManifest.cpp │ │ │ ├── CachedApplicationManifest.h │ │ │ ├── CachedCSSStyleSheet.cpp │ │ │ ├── CachedCSSStyleSheet.h │ │ │ ├── CachedFont.cpp │ │ │ ├── CachedFont.h │ │ │ ├── CachedFontClient.h │ │ │ ├── CachedImage.cpp │ │ │ ├── CachedImage.h │ │ │ ├── CachedImageClient.h │ │ │ ├── CachedRawResource.cpp │ │ │ ├── CachedRawResource.h │ │ │ ├── CachedRawResourceClient.h │ │ │ ├── CachedResource.cpp │ │ │ ├── CachedResource.h │ │ │ ├── CachedResourceClient.h │ │ │ ├── CachedResourceClientWalker.h │ │ │ ├── CachedResourceHandle.cpp │ │ │ ├── CachedResourceHandle.h │ │ │ ├── CachedResourceLoader.cpp │ │ │ ├── CachedResourceLoader.h │ │ │ ├── CachedResourceRequest.cpp │ │ │ ├── CachedResourceRequest.h │ │ │ ├── CachedResourceRequestInitiators.cpp │ │ │ ├── CachedResourceRequestInitiators.h │ │ │ ├── CachedSVGDocument.cpp │ │ │ ├── CachedSVGDocument.h │ │ │ ├── CachedSVGDocumentClient.h │ │ │ ├── CachedSVGDocumentReference.cpp │ │ │ ├── CachedSVGDocumentReference.h │ │ │ ├── CachedSVGFont.cpp │ │ │ ├── CachedSVGFont.h │ │ │ ├── CachedScript.cpp │ │ │ ├── CachedScript.h │ │ │ ├── CachedStyleSheetClient.h │ │ │ ├── CachedTextTrack.cpp │ │ │ ├── CachedTextTrack.h │ │ │ ├── CachedXSLStyleSheet.cpp │ │ │ ├── CachedXSLStyleSheet.h │ │ │ ├── KeepaliveRequestTracker.cpp │ │ │ ├── KeepaliveRequestTracker.h │ │ │ ├── MemoryCache.cpp │ │ │ └── MemoryCache.h │ │ ├── cf │ │ │ └── ResourceLoaderCFNet.cpp │ │ ├── cocoa │ │ │ ├── DiskCacheMonitorCocoa.h │ │ │ ├── DiskCacheMonitorCocoa.mm │ │ │ └── SubresourceLoaderCocoa.mm │ │ ├── icon │ │ │ ├── IconLoader.cpp │ │ │ └── IconLoader.h │ │ ├── ios │ │ │ ├── PreviewLoader.h │ │ │ └── PreviewLoader.mm │ │ ├── mac │ │ │ ├── DocumentLoaderMac.cpp │ │ │ ├── LoaderNSURLExtras.h │ │ │ ├── LoaderNSURLExtras.mm │ │ │ └── ResourceLoaderMac.mm │ │ ├── soup │ │ │ └── ResourceLoaderSoup.cpp │ │ └── win │ │ │ ├── DocumentLoaderWin.cpp │ │ │ └── FrameLoaderWin.cpp │ ├── make-hash-tools.pl │ ├── mathml │ │ ├── MathMLAnnotationElement.cpp │ │ ├── MathMLAnnotationElement.h │ │ ├── MathMLElement.cpp │ │ ├── MathMLElement.h │ │ ├── MathMLFractionElement.cpp │ │ ├── MathMLFractionElement.h │ │ ├── MathMLMathElement.cpp │ │ ├── MathMLMathElement.h │ │ ├── MathMLMencloseElement.cpp │ │ ├── MathMLMencloseElement.h │ │ ├── MathMLOperatorDictionary.cpp │ │ ├── MathMLOperatorDictionary.h │ │ ├── MathMLOperatorElement.cpp │ │ ├── MathMLOperatorElement.h │ │ ├── MathMLPaddedElement.cpp │ │ ├── MathMLPaddedElement.h │ │ ├── MathMLPresentationElement.cpp │ │ ├── MathMLPresentationElement.h │ │ ├── MathMLRootElement.cpp │ │ ├── MathMLRootElement.h │ │ ├── MathMLRowElement.cpp │ │ ├── MathMLRowElement.h │ │ ├── MathMLScriptsElement.cpp │ │ ├── MathMLScriptsElement.h │ │ ├── MathMLSelectElement.cpp │ │ ├── MathMLSelectElement.h │ │ ├── MathMLSpaceElement.cpp │ │ ├── MathMLSpaceElement.h │ │ ├── MathMLTokenElement.cpp │ │ ├── MathMLTokenElement.h │ │ ├── MathMLUnderOverElement.cpp │ │ ├── MathMLUnderOverElement.h │ │ ├── MathMLUnknownElement.cpp │ │ ├── MathMLUnknownElement.h │ │ ├── mathattrs.in │ │ └── mathtags.in │ ├── page │ │ ├── AbstractDOMWindow.cpp │ │ ├── AbstractDOMWindow.h │ │ ├── AbstractFrame.cpp │ │ ├── AbstractFrame.h │ │ ├── ActivityState.cpp │ │ ├── ActivityState.h │ │ ├── ActivityStateChangeObserver.h │ │ ├── AdjustViewSizeOrNot.h │ │ ├── AlternativeTextClient.h │ │ ├── ApplicationStateChangeListener.h │ │ ├── AutoplayEvent.h │ │ ├── AutoscrollController.cpp │ │ ├── AutoscrollController.h │ │ ├── BarProp.cpp │ │ ├── BarProp.h │ │ ├── BarProp.idl │ │ ├── Base64Utilities.cpp │ │ ├── Base64Utilities.h │ │ ├── CacheStorageProvider.h │ │ ├── CaptionUserPreferences.cpp │ │ ├── CaptionUserPreferences.h │ │ ├── CaptionUserPreferencesMediaAF.cpp │ │ ├── CaptionUserPreferencesMediaAF.h │ │ ├── Chrome.cpp │ │ ├── Chrome.h │ │ ├── ChromeClient.h │ │ ├── ClientOrigin.h │ │ ├── ContextMenuClient.h │ │ ├── ContextMenuContext.cpp │ │ ├── ContextMenuContext.h │ │ ├── ContextMenuController.cpp │ │ ├── ContextMenuController.h │ │ ├── ContextMenuProvider.h │ │ ├── CrossSiteNavigationDataTransfer.h │ │ ├── Crypto.cpp │ │ ├── Crypto.h │ │ ├── Crypto.idl │ │ ├── DOMSelection.cpp │ │ ├── DOMSelection.h │ │ ├── DOMSelection.idl │ │ ├── DOMTimer.cpp │ │ ├── DOMTimer.h │ │ ├── DOMWindow.cpp │ │ ├── DOMWindow.h │ │ ├── DOMWindow.idl │ │ ├── DOMWindowExtension.cpp │ │ ├── DOMWindowExtension.h │ │ ├── DOMWindowProperty.cpp │ │ ├── DOMWindowProperty.h │ │ ├── DatabaseProvider.cpp │ │ ├── DatabaseProvider.h │ │ ├── DebugPageOverlays.cpp │ │ ├── DebugPageOverlays.h │ │ ├── DeprecatedGlobalSettings.cpp │ │ ├── DeprecatedGlobalSettings.h │ │ ├── DeviceClient.h │ │ ├── DeviceController.cpp │ │ ├── DeviceController.h │ │ ├── DiagnosticLoggingClient.h │ │ ├── DiagnosticLoggingKeys.cpp │ │ ├── DiagnosticLoggingKeys.h │ │ ├── DiagnosticLoggingResultType.h │ │ ├── DisabledAdaptations.cpp │ │ ├── DisabledAdaptations.h │ │ ├── DragActions.h │ │ ├── DragClient.h │ │ ├── DragController.cpp │ │ ├── DragController.h │ │ ├── DragState.h │ │ ├── EditableImageReference.cpp │ │ ├── EditableImageReference.h │ │ ├── EditorClient.h │ │ ├── EventHandler.cpp │ │ ├── EventHandler.h │ │ ├── EventSource.cpp │ │ ├── EventSource.h │ │ ├── EventSource.idl │ │ ├── FocusController.cpp │ │ ├── FocusController.h │ │ ├── FocusDirection.h │ │ ├── Frame.cpp │ │ ├── Frame.h │ │ ├── FrameDestructionObserver.cpp │ │ ├── FrameDestructionObserver.h │ │ ├── FrameSnapshotting.cpp │ │ ├── FrameSnapshotting.h │ │ ├── FrameTree.cpp │ │ ├── FrameTree.h │ │ ├── FrameView.cpp │ │ ├── FrameView.h │ │ ├── FrameViewLayoutContext.cpp │ │ ├── FrameViewLayoutContext.h │ │ ├── GlobalCrypto.idl │ │ ├── GlobalFrameIdentifier.h │ │ ├── GlobalPerformance.idl │ │ ├── GlobalWindowIdentifier.h │ │ ├── History.cpp │ │ ├── History.h │ │ ├── History.idl │ │ ├── IntersectionObserver.cpp │ │ ├── IntersectionObserver.h │ │ ├── IntersectionObserver.idl │ │ ├── IntersectionObserverCallback.h │ │ ├── IntersectionObserverCallback.idl │ │ ├── IntersectionObserverEntry.cpp │ │ ├── IntersectionObserverEntry.h │ │ ├── IntersectionObserverEntry.idl │ │ ├── LayerFlushThrottleState.h │ │ ├── LayoutMilestone.h │ │ ├── Location.cpp │ │ ├── Location.h │ │ ├── Location.idl │ │ ├── MediaCanStartListener.h │ │ ├── MediaProducer.h │ │ ├── MemoryRelease.cpp │ │ ├── MemoryRelease.h │ │ ├── MouseEventWithHitTestResults.cpp │ │ ├── MouseEventWithHitTestResults.h │ │ ├── Navigator.cpp │ │ ├── Navigator.h │ │ ├── Navigator.idl │ │ ├── NavigatorBase.cpp │ │ ├── NavigatorBase.h │ │ ├── NavigatorID.idl │ │ ├── NavigatorLanguage.idl │ │ ├── NavigatorOnLine.idl │ │ ├── NavigatorServiceWorker.idl │ │ ├── NavigatorShare.idl │ │ ├── OriginAccessEntry.cpp │ │ ├── OriginAccessEntry.h │ │ ├── Page.cpp │ │ ├── Page.h │ │ ├── PageConfiguration.cpp │ │ ├── PageConfiguration.h │ │ ├── PageConsoleClient.cpp │ │ ├── PageConsoleClient.h │ │ ├── PageDebuggable.cpp │ │ ├── PageDebuggable.h │ │ ├── PageGroup.cpp │ │ ├── PageGroup.h │ │ ├── PageGroupLoadDeferrer.cpp │ │ ├── PageGroupLoadDeferrer.h │ │ ├── PageIdentifier.h │ │ ├── PageOverlay.cpp │ │ ├── PageOverlay.h │ │ ├── PageOverlayController.cpp │ │ ├── PageOverlayController.h │ │ ├── PageSerializer.cpp │ │ ├── PageSerializer.h │ │ ├── Performance.cpp │ │ ├── Performance.h │ │ ├── Performance.idl │ │ ├── PerformanceEntry.cpp │ │ ├── PerformanceEntry.h │ │ ├── PerformanceEntry.idl │ │ ├── PerformanceLogging.cpp │ │ ├── PerformanceLogging.h │ │ ├── PerformanceLoggingClient.cpp │ │ ├── PerformanceLoggingClient.h │ │ ├── PerformanceMark.h │ │ ├── PerformanceMark.idl │ │ ├── PerformanceMeasure.h │ │ ├── PerformanceMeasure.idl │ │ ├── PerformanceMonitor.cpp │ │ ├── PerformanceMonitor.h │ │ ├── PerformanceNavigation.cpp │ │ ├── PerformanceNavigation.h │ │ ├── PerformanceNavigation.idl │ │ ├── PerformanceObserver.cpp │ │ ├── PerformanceObserver.h │ │ ├── PerformanceObserver.idl │ │ ├── PerformanceObserverCallback.h │ │ ├── PerformanceObserverCallback.idl │ │ ├── PerformanceObserverEntryList.cpp │ │ ├── PerformanceObserverEntryList.h │ │ ├── PerformanceObserverEntryList.idl │ │ ├── PerformanceResourceTiming.cpp │ │ ├── PerformanceResourceTiming.h │ │ ├── PerformanceResourceTiming.idl │ │ ├── PerformanceServerTiming.cpp │ │ ├── PerformanceServerTiming.h │ │ ├── PerformanceServerTiming.idl │ │ ├── PerformanceTiming.cpp │ │ ├── PerformanceTiming.h │ │ ├── PerformanceTiming.idl │ │ ├── PerformanceUserTiming.cpp │ │ ├── PerformanceUserTiming.h │ │ ├── PlugInClient.h │ │ ├── PointerCaptureController.cpp │ │ ├── PointerCaptureController.h │ │ ├── PointerLockController.cpp │ │ ├── PointerLockController.h │ │ ├── PopupOpeningObserver.h │ │ ├── PrewarmInformation.h │ │ ├── PrintContext.cpp │ │ ├── PrintContext.h │ │ ├── ProcessWarming.cpp │ │ ├── ProcessWarming.h │ │ ├── Quirks.cpp │ │ ├── Quirks.h │ │ ├── RemoteDOMWindow.cpp │ │ ├── RemoteDOMWindow.h │ │ ├── RemoteDOMWindow.idl │ │ ├── RemoteFrame.cpp │ │ ├── RemoteFrame.h │ │ ├── RenderingUpdateScheduler.cpp │ │ ├── RenderingUpdateScheduler.h │ │ ├── ResizeObservation.cpp │ │ ├── ResizeObservation.h │ │ ├── ResizeObserver.cpp │ │ ├── ResizeObserver.h │ │ ├── ResizeObserver.idl │ │ ├── ResizeObserverCallback.h │ │ ├── ResizeObserverCallback.idl │ │ ├── ResizeObserverEntry.h │ │ ├── ResizeObserverEntry.idl │ │ ├── ResourceUsageData.h │ │ ├── ResourceUsageOverlay.cpp │ │ ├── ResourceUsageOverlay.h │ │ ├── ResourceUsageThread.cpp │ │ ├── ResourceUsageThread.h │ │ ├── RuntimeEnabledFeatures.cpp │ │ ├── RuntimeEnabledFeatures.h │ │ ├── Screen.cpp │ │ ├── Screen.h │ │ ├── Screen.idl │ │ ├── ScrollIntoViewOptions.h │ │ ├── ScrollIntoViewOptions.idl │ │ ├── ScrollLogicalPosition.h │ │ ├── ScrollLogicalPosition.idl │ │ ├── ScrollToOptions.h │ │ ├── ScrollToOptions.idl │ │ ├── SecurityOrigin.cpp │ │ ├── SecurityOrigin.h │ │ ├── SecurityOriginData.cpp │ │ ├── SecurityOriginData.h │ │ ├── SecurityOriginHash.h │ │ ├── SecurityPolicy.cpp │ │ ├── SecurityPolicy.h │ │ ├── Settings.yaml │ │ ├── SettingsBase.cpp │ │ ├── SettingsBase.h │ │ ├── SettingsDefaultValues.h │ │ ├── ShareData.h │ │ ├── ShareData.idl │ │ ├── SocketProvider.cpp │ │ ├── SocketProvider.h │ │ ├── SpatialNavigation.cpp │ │ ├── SpatialNavigation.h │ │ ├── SpeechSynthesisClient.h │ │ ├── SuspendableTimer.cpp │ │ ├── SuspendableTimer.h │ │ ├── TextIndicator.cpp │ │ ├── TextIndicator.h │ │ ├── UndoItem.cpp │ │ ├── UndoItem.h │ │ ├── UndoItem.idl │ │ ├── UndoManager.cpp │ │ ├── UndoManager.h │ │ ├── UndoManager.idl │ │ ├── UserContentController.cpp │ │ ├── UserContentController.h │ │ ├── UserContentProvider.cpp │ │ ├── UserContentProvider.h │ │ ├── UserContentTypes.h │ │ ├── UserContentURLPattern.cpp │ │ ├── UserContentURLPattern.h │ │ ├── UserMessageHandler.cpp │ │ ├── UserMessageHandler.h │ │ ├── UserMessageHandler.idl │ │ ├── UserMessageHandlerDescriptor.cpp │ │ ├── UserMessageHandlerDescriptor.h │ │ ├── UserMessageHandlerDescriptorTypes.h │ │ ├── UserMessageHandlersNamespace.cpp │ │ ├── UserMessageHandlersNamespace.h │ │ ├── UserMessageHandlersNamespace.idl │ │ ├── UserScript.h │ │ ├── UserScriptTypes.h │ │ ├── UserStyleSheet.h │ │ ├── UserStyleSheetTypes.h │ │ ├── ValidationMessageClient.h │ │ ├── ViewportConfiguration.cpp │ │ ├── ViewportConfiguration.h │ │ ├── VisitedLinkStore.cpp │ │ ├── VisitedLinkStore.h │ │ ├── VisualViewport.cpp │ │ ├── VisualViewport.h │ │ ├── VisualViewport.idl │ │ ├── WebCoreKeyboardUIMode.h │ │ ├── WebKitNamespace.cpp │ │ ├── WebKitNamespace.h │ │ ├── WebKitNamespace.idl │ │ ├── WebKitPoint.h │ │ ├── WebKitPoint.idl │ │ ├── WheelEventDeltaFilter.cpp │ │ ├── WheelEventDeltaFilter.h │ │ ├── WheelEventTestTrigger.cpp │ │ ├── WheelEventTestTrigger.h │ │ ├── WindowEventHandlers.idl │ │ ├── WindowFeatures.cpp │ │ ├── WindowFeatures.h │ │ ├── WindowFocusAllowedIndicator.cpp │ │ ├── WindowFocusAllowedIndicator.h │ │ ├── WindowOrWorkerGlobalScope.idl │ │ ├── WorkerNavigator.cpp │ │ ├── WorkerNavigator.h │ │ ├── WorkerNavigator.idl │ │ ├── animation │ │ │ ├── AnimationBase.cpp │ │ │ ├── AnimationBase.h │ │ │ ├── CSSAnimationController.cpp │ │ │ ├── CSSAnimationController.h │ │ │ ├── CSSAnimationControllerPrivate.h │ │ │ ├── CSSPropertyAnimation.cpp │ │ │ ├── CSSPropertyAnimation.h │ │ │ ├── CompositeAnimation.cpp │ │ │ ├── CompositeAnimation.h │ │ │ ├── ImplicitAnimation.cpp │ │ │ ├── ImplicitAnimation.h │ │ │ ├── KeyframeAnimation.cpp │ │ │ └── KeyframeAnimation.h │ │ ├── cocoa │ │ │ ├── MemoryReleaseCocoa.mm │ │ │ ├── PerformanceLoggingCocoa.mm │ │ │ ├── ResourceUsageOverlayCocoa.mm │ │ │ ├── ResourceUsageThreadCocoa.mm │ │ │ └── SettingsBaseCocoa.mm │ │ ├── csp │ │ │ ├── ContentSecurityPolicy.cpp │ │ │ ├── ContentSecurityPolicy.h │ │ │ ├── ContentSecurityPolicyClient.cpp │ │ │ ├── ContentSecurityPolicyClient.h │ │ │ ├── ContentSecurityPolicyDirective.cpp │ │ │ ├── ContentSecurityPolicyDirective.h │ │ │ ├── ContentSecurityPolicyDirectiveList.cpp │ │ │ ├── ContentSecurityPolicyDirectiveList.h │ │ │ ├── ContentSecurityPolicyDirectiveNames.cpp │ │ │ ├── ContentSecurityPolicyDirectiveNames.h │ │ │ ├── ContentSecurityPolicyHash.h │ │ │ ├── ContentSecurityPolicyMediaListDirective.cpp │ │ │ ├── ContentSecurityPolicyMediaListDirective.h │ │ │ ├── ContentSecurityPolicyResponseHeaders.cpp │ │ │ ├── ContentSecurityPolicyResponseHeaders.h │ │ │ ├── ContentSecurityPolicySource.cpp │ │ │ ├── ContentSecurityPolicySource.h │ │ │ ├── ContentSecurityPolicySourceList.cpp │ │ │ ├── ContentSecurityPolicySourceList.h │ │ │ ├── ContentSecurityPolicySourceListDirective.cpp │ │ │ └── ContentSecurityPolicySourceListDirective.h │ │ ├── gtk │ │ │ └── DragControllerGtk.cpp │ │ ├── ios │ │ │ ├── ContentChangeObserver.cpp │ │ │ ├── ContentChangeObserver.h │ │ │ ├── DOMTimerHoldingTank.cpp │ │ │ ├── DOMTimerHoldingTank.h │ │ │ ├── EventHandlerIOS.mm │ │ │ ├── FrameIOS.mm │ │ │ ├── WebEventRegion.h │ │ │ └── WebEventRegion.mm │ │ ├── linux │ │ │ ├── ResourceUsageOverlayLinux.cpp │ │ │ └── ResourceUsageThreadLinux.cpp │ │ ├── mac │ │ │ ├── ChromeMac.mm │ │ │ ├── DragControllerMac.mm │ │ │ ├── EventHandlerMac.mm │ │ │ ├── PageMac.mm │ │ │ ├── ServicesOverlayController.h │ │ │ ├── ServicesOverlayController.mm │ │ │ ├── TextIndicatorWindow.h │ │ │ ├── TextIndicatorWindow.mm │ │ │ ├── WebCoreFrameView.h │ │ │ ├── WheelEventDeltaFilterMac.h │ │ │ └── WheelEventDeltaFilterMac.mm │ │ ├── scrolling │ │ │ ├── AsyncScrollingCoordinator.cpp │ │ │ ├── AsyncScrollingCoordinator.h │ │ │ ├── AxisScrollSnapOffsets.cpp │ │ │ ├── AxisScrollSnapOffsets.h │ │ │ ├── ScrollLatchingState.cpp │ │ │ ├── ScrollLatchingState.h │ │ │ ├── ScrollSnapOffsetsInfo.h │ │ │ ├── ScrollingConstraints.cpp │ │ │ ├── ScrollingConstraints.h │ │ │ ├── ScrollingCoordinator.cpp │ │ │ ├── ScrollingCoordinator.h │ │ │ ├── ScrollingCoordinatorTypes.h │ │ │ ├── ScrollingMomentumCalculator.cpp │ │ │ ├── ScrollingMomentumCalculator.h │ │ │ ├── ScrollingStateFixedNode.cpp │ │ │ ├── ScrollingStateFixedNode.h │ │ │ ├── ScrollingStateFrameHostingNode.cpp │ │ │ ├── ScrollingStateFrameHostingNode.h │ │ │ ├── ScrollingStateFrameScrollingNode.cpp │ │ │ ├── ScrollingStateFrameScrollingNode.h │ │ │ ├── ScrollingStateNode.cpp │ │ │ ├── ScrollingStateNode.h │ │ │ ├── ScrollingStateOverflowScrollProxyNode.cpp │ │ │ ├── ScrollingStateOverflowScrollProxyNode.h │ │ │ ├── ScrollingStateOverflowScrollingNode.cpp │ │ │ ├── ScrollingStateOverflowScrollingNode.h │ │ │ ├── ScrollingStatePositionedNode.cpp │ │ │ ├── ScrollingStatePositionedNode.h │ │ │ ├── ScrollingStateScrollingNode.cpp │ │ │ ├── ScrollingStateScrollingNode.h │ │ │ ├── ScrollingStateStickyNode.cpp │ │ │ ├── ScrollingStateStickyNode.h │ │ │ ├── ScrollingStateTree.cpp │ │ │ ├── ScrollingStateTree.h │ │ │ ├── ScrollingThread.cpp │ │ │ ├── ScrollingThread.h │ │ │ ├── ScrollingTree.cpp │ │ │ ├── ScrollingTree.h │ │ │ ├── ScrollingTreeFrameHostingNode.cpp │ │ │ ├── ScrollingTreeFrameHostingNode.h │ │ │ ├── ScrollingTreeFrameScrollingNode.cpp │ │ │ ├── ScrollingTreeFrameScrollingNode.h │ │ │ ├── ScrollingTreeNode.cpp │ │ │ ├── ScrollingTreeNode.h │ │ │ ├── ScrollingTreeOverflowScrollProxyNode.cpp │ │ │ ├── ScrollingTreeOverflowScrollProxyNode.h │ │ │ ├── ScrollingTreeOverflowScrollingNode.cpp │ │ │ ├── ScrollingTreeOverflowScrollingNode.h │ │ │ ├── ScrollingTreeScrollingNode.cpp │ │ │ ├── ScrollingTreeScrollingNode.h │ │ │ ├── ScrollingTreeScrollingNodeDelegate.cpp │ │ │ ├── ScrollingTreeScrollingNodeDelegate.h │ │ │ ├── ThreadedScrollingTree.cpp │ │ │ ├── ThreadedScrollingTree.h │ │ │ ├── cocoa │ │ │ │ ├── ScrollingStateNode.mm │ │ │ │ ├── ScrollingTreeFixedNode.h │ │ │ │ ├── ScrollingTreeFixedNode.mm │ │ │ │ ├── ScrollingTreeOverflowScrollProxyNode.h │ │ │ │ ├── ScrollingTreeOverflowScrollProxyNode.mm │ │ │ │ ├── ScrollingTreePositionedNode.h │ │ │ │ ├── ScrollingTreePositionedNode.mm │ │ │ │ ├── ScrollingTreeStickyNode.h │ │ │ │ └── ScrollingTreeStickyNode.mm │ │ │ ├── generic │ │ │ │ └── ScrollingThreadGeneric.cpp │ │ │ ├── mac │ │ │ │ ├── ScrollingCoordinatorMac.h │ │ │ │ ├── ScrollingCoordinatorMac.mm │ │ │ │ ├── ScrollingMomentumCalculatorMac.h │ │ │ │ ├── ScrollingMomentumCalculatorMac.mm │ │ │ │ ├── ScrollingStateScrollingNodeMac.mm │ │ │ │ ├── ScrollingThreadMac.mm │ │ │ │ ├── ScrollingTreeFrameScrollingNodeMac.h │ │ │ │ ├── ScrollingTreeFrameScrollingNodeMac.mm │ │ │ │ ├── ScrollingTreeMac.cpp │ │ │ │ ├── ScrollingTreeMac.h │ │ │ │ ├── ScrollingTreeOverflowScrollingNodeMac.h │ │ │ │ ├── ScrollingTreeOverflowScrollingNodeMac.mm │ │ │ │ ├── ScrollingTreeScrollingNodeDelegateMac.h │ │ │ │ └── ScrollingTreeScrollingNodeDelegateMac.mm │ │ │ └── nicosia │ │ │ │ ├── ScrollingCoordinatorNicosia.cpp │ │ │ │ ├── ScrollingCoordinatorNicosia.h │ │ │ │ ├── ScrollingStateNodeNicosia.cpp │ │ │ │ ├── ScrollingTreeFixedNode.cpp │ │ │ │ ├── ScrollingTreeFixedNode.h │ │ │ │ ├── ScrollingTreeFrameScrollingNodeNicosia.cpp │ │ │ │ ├── ScrollingTreeFrameScrollingNodeNicosia.h │ │ │ │ ├── ScrollingTreeNicosia.cpp │ │ │ │ ├── ScrollingTreeNicosia.h │ │ │ │ ├── ScrollingTreeStickyNode.cpp │ │ │ │ └── ScrollingTreeStickyNode.h │ │ └── win │ │ │ ├── DragControllerWin.cpp │ │ │ ├── EventHandlerWin.cpp │ │ │ ├── FrameCGWin.cpp │ │ │ ├── FrameCairoWin.cpp │ │ │ ├── FrameGdiWin.cpp │ │ │ ├── FrameWin.cpp │ │ │ ├── FrameWin.h │ │ │ ├── FrameWinDirect2D.cpp │ │ │ ├── ResourceUsageOverlayWin.cpp │ │ │ └── ResourceUsageThreadWin.cpp │ ├── platform │ │ ├── AbortableTaskQueue.h │ │ ├── CPUMonitor.cpp │ │ ├── CPUMonitor.h │ │ ├── Cairo.cmake │ │ ├── CalculationValue.cpp │ │ ├── CalculationValue.h │ │ ├── ColorChooser.h │ │ ├── ColorChooserClient.h │ │ ├── ColorData.gperf │ │ ├── ContentFilterUnblockHandler.h │ │ ├── ContentType.cpp │ │ ├── ContentType.h │ │ ├── ContextMenu.cpp │ │ ├── ContextMenu.h │ │ ├── ContextMenuItem.cpp │ │ ├── ContextMenuItem.h │ │ ├── ControlStates.h │ │ ├── Cookie.h │ │ ├── CountedUserActivity.h │ │ ├── Curl.cmake │ │ ├── Cursor.cpp │ │ ├── Cursor.h │ │ ├── DataListSuggestionPicker.h │ │ ├── DataListSuggestionsClient.h │ │ ├── DateComponents.cpp │ │ ├── DateComponents.h │ │ ├── DateTimeChooser.h │ │ ├── DateTimeChooserClient.h │ │ ├── Decimal.cpp │ │ ├── Decimal.h │ │ ├── DeferrableTask.h │ │ ├── DragData.cpp │ │ ├── DragData.h │ │ ├── DragImage.cpp │ │ ├── DragImage.h │ │ ├── DragItem.h │ │ ├── EventLoop.h │ │ ├── EventTrackingRegions.cpp │ │ ├── EventTrackingRegions.h │ │ ├── FileChooser.cpp │ │ ├── FileChooser.h │ │ ├── FileHandle.cpp │ │ ├── FileHandle.h │ │ ├── FileMonitor.cpp │ │ ├── FileMonitor.h │ │ ├── FileStream.cpp │ │ ├── FileStream.h │ │ ├── FileStreamClient.h │ │ ├── FloatConversion.h │ │ ├── FreeType.cmake │ │ ├── GCrypt.cmake │ │ ├── GStreamer.cmake │ │ ├── GenericTaskQueue.cpp │ │ ├── GenericTaskQueue.h │ │ ├── HashTools.h │ │ ├── HolePunch.cmake │ │ ├── HostWindow.h │ │ ├── ImageDecoders.cmake │ │ ├── KeyedCoding.h │ │ ├── KeypressCommand.h │ │ ├── LayoutUnit.cpp │ │ ├── LayoutUnit.h │ │ ├── Length.cpp │ │ ├── Length.h │ │ ├── LengthBox.cpp │ │ ├── LengthBox.h │ │ ├── LengthPoint.cpp │ │ ├── LengthPoint.h │ │ ├── LengthSize.cpp │ │ ├── LengthSize.h │ │ ├── LinkIcon.h │ │ ├── LocalizedStrings.cpp │ │ ├── LocalizedStrings.h │ │ ├── LogInitialization.h │ │ ├── Logging.cpp │ │ ├── Logging.h │ │ ├── LowPowerModeNotifier.cpp │ │ ├── LowPowerModeNotifier.h │ │ ├── MIMETypeRegistry.cpp │ │ ├── MIMETypeRegistry.h │ │ ├── MainThreadSharedTimer.cpp │ │ ├── MainThreadSharedTimer.h │ │ ├── MediaCapabilitiesDecodingInfo.h │ │ ├── MediaCapabilitiesEncodingInfo.h │ │ ├── MediaCapabilitiesInfo.h │ │ ├── MediaDescription.h │ │ ├── MediaSample.h │ │ ├── MediaSelectionOption.h │ │ ├── NotImplemented.cpp │ │ ├── NotImplemented.h │ │ ├── OrientationNotifier.h │ │ ├── PODInterval.h │ │ ├── PODIntervalTree.h │ │ ├── PODRedBlackTree.h │ │ ├── Pasteboard.cpp │ │ ├── Pasteboard.h │ │ ├── PasteboardItemInfo.h │ │ ├── PasteboardStrategy.h │ │ ├── PasteboardWriterData.cpp │ │ ├── PasteboardWriterData.h │ │ ├── PlatformContentFilter.h │ │ ├── PlatformEvent.h │ │ ├── PlatformExportMacros.h │ │ ├── PlatformKeyboardEvent.cpp │ │ ├── PlatformKeyboardEvent.h │ │ ├── PlatformMouseEvent.h │ │ ├── PlatformPasteboard.h │ │ ├── PlatformScreen.h │ │ ├── PlatformSpeechSynthesisUtterance.cpp │ │ ├── PlatformSpeechSynthesisUtterance.h │ │ ├── PlatformSpeechSynthesisVoice.cpp │ │ ├── PlatformSpeechSynthesisVoice.h │ │ ├── PlatformSpeechSynthesizer.cpp │ │ ├── PlatformSpeechSynthesizer.h │ │ ├── PlatformStrategies.cpp │ │ ├── PlatformStrategies.h │ │ ├── PlatformTouchEvent.h │ │ ├── PlatformTouchPoint.h │ │ ├── PlatformWheelEvent.h │ │ ├── PointerID.h │ │ ├── PopupMenu.h │ │ ├── PopupMenuClient.h │ │ ├── PopupMenuStyle.h │ │ ├── ProcessIdentifier.cpp │ │ ├── ProcessIdentifier.h │ │ ├── PromisedAttachmentInfo.h │ │ ├── PublicSuffix.h │ │ ├── RectEdges.h │ │ ├── ReferrerPolicy.cpp │ │ ├── ReferrerPolicy.h │ │ ├── RegistrableDomain.h │ │ ├── RemoteCommandListener.cpp │ │ ├── RemoteCommandListener.h │ │ ├── RuntimeApplicationChecks.cpp │ │ ├── RuntimeApplicationChecks.h │ │ ├── SSLKeyGenerator.cpp │ │ ├── SSLKeyGenerator.h │ │ ├── SchemeRegistry.cpp │ │ ├── SchemeRegistry.h │ │ ├── ScreenProperties.h │ │ ├── ScrollAnimation.h │ │ ├── ScrollAnimationKinetic.cpp │ │ ├── ScrollAnimationKinetic.h │ │ ├── ScrollAnimationSmooth.cpp │ │ ├── ScrollAnimationSmooth.h │ │ ├── ScrollAnimator.cpp │ │ ├── ScrollAnimator.h │ │ ├── ScrollTypes.h │ │ ├── ScrollView.cpp │ │ ├── ScrollView.h │ │ ├── ScrollableArea.cpp │ │ ├── ScrollableArea.h │ │ ├── Scrollbar.cpp │ │ ├── Scrollbar.h │ │ ├── ScrollbarTheme.cpp │ │ ├── ScrollbarTheme.h │ │ ├── ScrollbarThemeComposite.cpp │ │ ├── ScrollbarThemeComposite.h │ │ ├── SearchPopupMenu.h │ │ ├── SerializedPlatformRepresentation.h │ │ ├── SharedBuffer.cpp │ │ ├── SharedBuffer.h │ │ ├── SharedBufferChunkReader.cpp │ │ ├── SharedBufferChunkReader.h │ │ ├── SharedStringHash.cpp │ │ ├── SharedStringHash.h │ │ ├── SharedTimer.h │ │ ├── Soup.cmake │ │ ├── SourcesCairo.txt │ │ ├── SourcesGCrypt.txt │ │ ├── SourcesGLib.txt │ │ ├── SourcesSoup.txt │ │ ├── StaticPasteboard.cpp │ │ ├── StaticPasteboard.h │ │ ├── SuddenTermination.h │ │ ├── Supplementable.h │ │ ├── TelephoneNumberDetector.h │ │ ├── TextureMapper.cmake │ │ ├── Theme.cpp │ │ ├── Theme.h │ │ ├── ThemeTypes.h │ │ ├── ThreadCheck.h │ │ ├── ThreadGlobalData.cpp │ │ ├── ThreadGlobalData.h │ │ ├── ThreadSafeDataBuffer.h │ │ ├── ThreadTimers.cpp │ │ ├── ThreadTimers.h │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── TouchAction.h │ │ ├── UserActivity.cpp │ │ ├── UserActivity.h │ │ ├── UserAgent.h │ │ ├── UserAgentQuirks.cpp │ │ ├── UserAgentQuirks.h │ │ ├── UserInterfaceLayoutDirection.h │ │ ├── ValidationBubble.h │ │ ├── WebCoreCrossThreadCopier.cpp │ │ ├── WebCoreCrossThreadCopier.h │ │ ├── WebGLStateTracker.cpp │ │ ├── WebGLStateTracker.h │ │ ├── Widget.cpp │ │ ├── Widget.h │ │ ├── WindowsKeyboardCodes.h │ │ ├── animation │ │ │ ├── Animation.cpp │ │ │ ├── Animation.h │ │ │ ├── AnimationList.cpp │ │ │ ├── AnimationList.h │ │ │ ├── AnimationUtilities.h │ │ │ ├── TimingFunction.cpp │ │ │ └── TimingFunction.h │ │ ├── audio │ │ │ ├── AudioArray.h │ │ │ ├── AudioBus.cpp │ │ │ ├── AudioBus.h │ │ │ ├── AudioChannel.cpp │ │ │ ├── AudioChannel.h │ │ │ ├── AudioDSPKernel.h │ │ │ ├── AudioDSPKernelProcessor.cpp │ │ │ ├── AudioDSPKernelProcessor.h │ │ │ ├── AudioDestination.h │ │ │ ├── AudioFIFO.cpp │ │ │ ├── AudioFIFO.h │ │ │ ├── AudioFileReader.h │ │ │ ├── AudioHardwareListener.cpp │ │ │ ├── AudioHardwareListener.h │ │ │ ├── AudioIOCallback.h │ │ │ ├── AudioProcessor.h │ │ │ ├── AudioPullFIFO.cpp │ │ │ ├── AudioPullFIFO.h │ │ │ ├── AudioResampler.cpp │ │ │ ├── AudioResampler.h │ │ │ ├── AudioResamplerKernel.cpp │ │ │ ├── AudioResamplerKernel.h │ │ │ ├── AudioSession.cpp │ │ │ ├── AudioSession.h │ │ │ ├── AudioSourceProvider.h │ │ │ ├── AudioSourceProviderClient.h │ │ │ ├── AudioStreamDescription.h │ │ │ ├── AudioUtilities.cpp │ │ │ ├── AudioUtilities.h │ │ │ ├── Biquad.cpp │ │ │ ├── Biquad.h │ │ │ ├── Cone.cpp │ │ │ ├── Cone.h │ │ │ ├── DenormalDisabler.h │ │ │ ├── DirectConvolver.cpp │ │ │ ├── DirectConvolver.h │ │ │ ├── Distance.cpp │ │ │ ├── Distance.h │ │ │ ├── DownSampler.cpp │ │ │ ├── DownSampler.h │ │ │ ├── DynamicsCompressor.cpp │ │ │ ├── DynamicsCompressor.h │ │ │ ├── DynamicsCompressorKernel.cpp │ │ │ ├── DynamicsCompressorKernel.h │ │ │ ├── EqualPowerPanner.cpp │ │ │ ├── EqualPowerPanner.h │ │ │ ├── FFTConvolver.cpp │ │ │ ├── FFTConvolver.h │ │ │ ├── FFTFrame.cpp │ │ │ ├── FFTFrame.h │ │ │ ├── FFTFrameStub.cpp │ │ │ ├── HRTFDatabase.cpp │ │ │ ├── HRTFDatabase.h │ │ │ ├── HRTFDatabaseLoader.cpp │ │ │ ├── HRTFDatabaseLoader.h │ │ │ ├── HRTFElevation.cpp │ │ │ ├── HRTFElevation.h │ │ │ ├── HRTFKernel.cpp │ │ │ ├── HRTFKernel.h │ │ │ ├── HRTFPanner.cpp │ │ │ ├── HRTFPanner.h │ │ │ ├── MultiChannelResampler.cpp │ │ │ ├── MultiChannelResampler.h │ │ │ ├── Panner.cpp │ │ │ ├── Panner.h │ │ │ ├── PlatformAudioData.h │ │ │ ├── PlatformMediaSession.cpp │ │ │ ├── PlatformMediaSession.h │ │ │ ├── PlatformMediaSessionManager.cpp │ │ │ ├── PlatformMediaSessionManager.h │ │ │ ├── Reverb.cpp │ │ │ ├── Reverb.h │ │ │ ├── ReverbAccumulationBuffer.cpp │ │ │ ├── ReverbAccumulationBuffer.h │ │ │ ├── ReverbConvolver.cpp │ │ │ ├── ReverbConvolver.h │ │ │ ├── ReverbConvolverStage.cpp │ │ │ ├── ReverbConvolverStage.h │ │ │ ├── ReverbInputBuffer.cpp │ │ │ ├── ReverbInputBuffer.h │ │ │ ├── SincResampler.cpp │ │ │ ├── SincResampler.h │ │ │ ├── UpSampler.cpp │ │ │ ├── UpSampler.h │ │ │ ├── VectorMath.cpp │ │ │ ├── VectorMath.h │ │ │ ├── ZeroPole.cpp │ │ │ ├── ZeroPole.h │ │ │ ├── cocoa │ │ │ │ ├── MediaSessionManagerCocoa.h │ │ │ │ ├── MediaSessionManagerCocoa.mm │ │ │ │ ├── WebAudioBufferList.cpp │ │ │ │ └── WebAudioBufferList.h │ │ │ ├── glib │ │ │ │ └── AudioBusGLib.cpp │ │ │ ├── gstreamer │ │ │ │ ├── AudioDestinationGStreamer.cpp │ │ │ │ ├── AudioDestinationGStreamer.h │ │ │ │ ├── AudioFileReaderGStreamer.cpp │ │ │ │ ├── AudioSourceProviderGStreamer.cpp │ │ │ │ ├── AudioSourceProviderGStreamer.h │ │ │ │ ├── FFTFrameGStreamer.cpp │ │ │ │ ├── WebKitWebAudioSourceGStreamer.cpp │ │ │ │ └── WebKitWebAudioSourceGStreamer.h │ │ │ ├── ios │ │ │ │ ├── AudioDestinationIOS.cpp │ │ │ │ ├── AudioDestinationIOS.h │ │ │ │ ├── AudioFileReaderIOS.cpp │ │ │ │ ├── AudioFileReaderIOS.h │ │ │ │ ├── AudioSessionIOS.mm │ │ │ │ ├── MediaSessionManagerIOS.h │ │ │ │ └── MediaSessionManagerIOS.mm │ │ │ ├── mac │ │ │ │ ├── AudioBusMac.mm │ │ │ │ ├── AudioDestinationMac.cpp │ │ │ │ ├── AudioDestinationMac.h │ │ │ │ ├── AudioFileReaderMac.cpp │ │ │ │ ├── AudioFileReaderMac.h │ │ │ │ ├── AudioHardwareListenerMac.cpp │ │ │ │ ├── AudioHardwareListenerMac.h │ │ │ │ ├── AudioSampleBufferList.cpp │ │ │ │ ├── AudioSampleBufferList.h │ │ │ │ ├── AudioSampleDataSource.h │ │ │ │ ├── AudioSampleDataSource.mm │ │ │ │ ├── AudioSessionMac.cpp │ │ │ │ ├── CAAudioStreamDescription.cpp │ │ │ │ ├── CAAudioStreamDescription.h │ │ │ │ ├── CARingBuffer.cpp │ │ │ │ ├── CARingBuffer.h │ │ │ │ └── FFTFrameMac.cpp │ │ │ ├── resources │ │ │ │ ├── Composite.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T000_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T015_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T030_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T045_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T060_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T075_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T090_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T105_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T120_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T135_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T150_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T165_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T180_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T195_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T210_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T225_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T240_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T255_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T270_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T285_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T300_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T315_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P330.wav │ │ │ │ ├── IRC_Composite_C_R0195_T330_P345.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P000.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P015.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P030.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P045.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P060.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P075.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P090.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P315.wav │ │ │ │ ├── IRC_Composite_C_R0195_T345_P330.wav │ │ │ │ └── IRC_Composite_C_R0195_T345_P345.wav │ │ │ └── ultralight │ │ │ │ └── AudioBusUltralight.cpp │ │ ├── cf │ │ │ ├── KeyedDecoderCF.cpp │ │ │ ├── KeyedDecoderCF.h │ │ │ ├── KeyedEncoderCF.cpp │ │ │ ├── KeyedEncoderCF.h │ │ │ ├── MainThreadSharedTimerCF.cpp │ │ │ ├── MediaAccessibilitySoftLink.cpp │ │ │ ├── MediaAccessibilitySoftLink.h │ │ │ ├── RunLoopObserver.cpp │ │ │ ├── RunLoopObserver.h │ │ │ ├── SharedBufferCF.cpp │ │ │ └── win │ │ │ │ ├── CertificateCFWin.cpp │ │ │ │ └── CertificateCFWin.h │ │ ├── cocoa │ │ │ ├── ContentFilterUnblockHandlerCocoa.mm │ │ │ ├── CoreVideoSoftLink.cpp │ │ │ ├── CoreVideoSoftLink.h │ │ │ ├── DataDetectorsCoreSoftLink.h │ │ │ ├── DataDetectorsCoreSoftLink.mm │ │ │ ├── FileMonitorCocoa.mm │ │ │ ├── KeyEventCocoa.h │ │ │ ├── KeyEventCocoa.mm │ │ │ ├── LocalizedStringsCocoa.mm │ │ │ ├── MIMETypeRegistryCocoa.mm │ │ │ ├── NetworkExtensionContentFilter.h │ │ │ ├── NetworkExtensionContentFilter.mm │ │ │ ├── ParentalControlsContentFilter.h │ │ │ ├── ParentalControlsContentFilter.mm │ │ │ ├── PasteboardCocoa.mm │ │ │ ├── PlatformView.h │ │ │ ├── PlaybackSessionInterface.h │ │ │ ├── PlaybackSessionModel.h │ │ │ ├── PlaybackSessionModelMediaElement.h │ │ │ ├── PlaybackSessionModelMediaElement.mm │ │ │ ├── RuntimeApplicationChecksCocoa.mm │ │ │ ├── ScrollController.h │ │ │ ├── ScrollController.mm │ │ │ ├── ScrollSnapAnimatorState.h │ │ │ ├── ScrollSnapAnimatorState.mm │ │ │ ├── SearchPopupMenuCocoa.h │ │ │ ├── SearchPopupMenuCocoa.mm │ │ │ ├── SharedBufferCocoa.mm │ │ │ ├── SystemVersion.h │ │ │ ├── SystemVersion.mm │ │ │ ├── TelephoneNumberDetectorCocoa.cpp │ │ │ ├── ThemeCocoa.h │ │ │ ├── ThemeCocoa.mm │ │ │ ├── UserAgentCocoa.mm │ │ │ ├── VideoFullscreenChangeObserver.h │ │ │ ├── VideoFullscreenModel.h │ │ │ ├── VideoFullscreenModelVideoElement.h │ │ │ ├── VideoFullscreenModelVideoElement.mm │ │ │ ├── VideoToolboxSoftLink.cpp │ │ │ ├── VideoToolboxSoftLink.h │ │ │ ├── WebCoreAdditions.mm │ │ │ ├── WebCoreNSErrorExtras.h │ │ │ ├── WebCoreNSErrorExtras.mm │ │ │ └── WebKitAvailability.h │ │ ├── encryptedmedia │ │ │ ├── CDMEncryptionScheme.h │ │ │ ├── CDMFactory.cpp │ │ │ ├── CDMFactory.h │ │ │ ├── CDMInstance.h │ │ │ ├── CDMInstanceSession.h │ │ │ ├── CDMKeyStatus.h │ │ │ ├── CDMKeySystemConfiguration.h │ │ │ ├── CDMMediaCapability.h │ │ │ ├── CDMMessageType.h │ │ │ ├── CDMPrivate.h │ │ │ ├── CDMRequirement.h │ │ │ ├── CDMRestrictions.h │ │ │ ├── CDMSessionType.h │ │ │ └── clearkey │ │ │ │ ├── CDMClearKey.cpp │ │ │ │ └── CDMClearKey.h │ │ ├── gamepad │ │ │ ├── EmptyGamepadProvider.cpp │ │ │ ├── EmptyGamepadProvider.h │ │ │ ├── GamepadProvider.cpp │ │ │ ├── GamepadProvider.h │ │ │ ├── GamepadProviderClient.h │ │ │ ├── PlatformGamepad.h │ │ │ ├── cocoa │ │ │ │ ├── GameControllerGamepad.h │ │ │ │ ├── GameControllerGamepad.mm │ │ │ │ ├── GameControllerGamepadProvider.h │ │ │ │ └── GameControllerGamepadProvider.mm │ │ │ └── mac │ │ │ │ ├── HIDGamepad.cpp │ │ │ │ ├── HIDGamepad.h │ │ │ │ ├── HIDGamepadProvider.cpp │ │ │ │ └── HIDGamepadProvider.h │ │ ├── generic │ │ │ ├── KeyedDecoderGeneric.cpp │ │ │ ├── KeyedDecoderGeneric.h │ │ │ ├── KeyedEncoderGeneric.cpp │ │ │ ├── KeyedEncoderGeneric.h │ │ │ ├── ScrollAnimatorGeneric.cpp │ │ │ └── ScrollAnimatorGeneric.h │ │ ├── glib │ │ │ ├── EventHandlerGLib.cpp │ │ │ ├── EventLoopGlib.cpp │ │ │ ├── FileMonitorGLib.cpp │ │ │ ├── KeyedDecoderGlib.cpp │ │ │ ├── KeyedDecoderGlib.h │ │ │ ├── KeyedEncoderGlib.cpp │ │ │ ├── KeyedEncoderGlib.h │ │ │ ├── LowPowerModeNotifierGLib.cpp │ │ │ ├── SSLKeyGeneratorGLib.cpp │ │ │ ├── SharedBufferGlib.cpp │ │ │ └── UserAgentGLib.cpp │ │ ├── graphics │ │ │ ├── ANGLEWebKitBridge.cpp │ │ │ ├── ANGLEWebKitBridge.h │ │ │ ├── AudioTrackPrivate.h │ │ │ ├── BitmapImage.cpp │ │ │ ├── BitmapImage.h │ │ │ ├── Color.cpp │ │ │ ├── Color.h │ │ │ ├── ColorHash.h │ │ │ ├── ColorSpace.h │ │ │ ├── ColorUtilities.cpp │ │ │ ├── ColorUtilities.h │ │ │ ├── ComplexTextController.cpp │ │ │ ├── ComplexTextController.h │ │ │ ├── CrossfadeGeneratedImage.cpp │ │ │ ├── CrossfadeGeneratedImage.h │ │ │ ├── CustomPaintImage.cpp │ │ │ ├── CustomPaintImage.h │ │ │ ├── DashArray.h │ │ │ ├── DecodingOptions.h │ │ │ ├── DisplayRefreshMonitor.cpp │ │ │ ├── DisplayRefreshMonitor.h │ │ │ ├── DisplayRefreshMonitorClient.cpp │ │ │ ├── DisplayRefreshMonitorClient.h │ │ │ ├── DisplayRefreshMonitorManager.cpp │ │ │ ├── DisplayRefreshMonitorManager.h │ │ │ ├── ExtendedColor.cpp │ │ │ ├── ExtendedColor.h │ │ │ ├── Extensions3D.h │ │ │ ├── FloatPoint.cpp │ │ │ ├── FloatPoint.h │ │ │ ├── FloatPoint3D.cpp │ │ │ ├── FloatPoint3D.h │ │ │ ├── FloatPolygon.cpp │ │ │ ├── FloatPolygon.h │ │ │ ├── FloatQuad.cpp │ │ │ ├── FloatQuad.h │ │ │ ├── FloatRect.cpp │ │ │ ├── FloatRect.h │ │ │ ├── FloatRoundedRect.cpp │ │ │ ├── FloatRoundedRect.h │ │ │ ├── FloatSize.cpp │ │ │ ├── FloatSize.h │ │ │ ├── FloatSizeHash.h │ │ │ ├── Font.cpp │ │ │ ├── Font.h │ │ │ ├── FontBaseline.h │ │ │ ├── FontCache.cpp │ │ │ ├── FontCache.h │ │ │ ├── FontCascade.cpp │ │ │ ├── FontCascade.h │ │ │ ├── FontCascadeDescription.cpp │ │ │ ├── FontCascadeDescription.h │ │ │ ├── FontCascadeFonts.cpp │ │ │ ├── FontCascadeFonts.h │ │ │ ├── FontDescription.cpp │ │ │ ├── FontDescription.h │ │ │ ├── FontFamilySpecificationNull.cpp │ │ │ ├── FontFamilySpecificationNull.h │ │ │ ├── FontGenericFamilies.cpp │ │ │ ├── FontGenericFamilies.h │ │ │ ├── FontMetrics.h │ │ │ ├── FontPlatformData.cpp │ │ │ ├── FontPlatformData.h │ │ │ ├── FontRanges.cpp │ │ │ ├── FontRanges.h │ │ │ ├── FontSelectionAlgorithm.cpp │ │ │ ├── FontSelectionAlgorithm.h │ │ │ ├── FontSelector.h │ │ │ ├── FontSelectorClient.h │ │ │ ├── FontTaggedSettings.cpp │ │ │ ├── FontTaggedSettings.h │ │ │ ├── FormatConverter.cpp │ │ │ ├── FormatConverter.h │ │ │ ├── FourCC.cpp │ │ │ ├── FourCC.h │ │ │ ├── GLContext.cpp │ │ │ ├── GLContext.h │ │ │ ├── GeneratedImage.cpp │ │ │ ├── GeneratedImage.h │ │ │ ├── GeometryUtilities.cpp │ │ │ ├── GeometryUtilities.h │ │ │ ├── Glyph.h │ │ │ ├── GlyphBuffer.h │ │ │ ├── GlyphMetricsMap.h │ │ │ ├── GlyphPage.h │ │ │ ├── Gradient.cpp │ │ │ ├── Gradient.h │ │ │ ├── GradientImage.cpp │ │ │ ├── GradientImage.h │ │ │ ├── GraphicsContext.cpp │ │ │ ├── GraphicsContext.h │ │ │ ├── GraphicsContext3D.cpp │ │ │ ├── GraphicsContext3D.h │ │ │ ├── GraphicsContext3DAttributes.h │ │ │ ├── GraphicsContext3DManager.cpp │ │ │ ├── GraphicsContext3DManager.h │ │ │ ├── GraphicsContext3DPrivate.cpp │ │ │ ├── GraphicsContext3DPrivate.h │ │ │ ├── GraphicsContextImpl.cpp │ │ │ ├── GraphicsContextImpl.h │ │ │ ├── GraphicsLayer.cpp │ │ │ ├── GraphicsLayer.h │ │ │ ├── GraphicsLayerClient.h │ │ │ ├── GraphicsLayerFactory.h │ │ │ ├── GraphicsLayerTransform.cpp │ │ │ ├── GraphicsLayerTransform.h │ │ │ ├── GraphicsLayerUpdater.cpp │ │ │ ├── GraphicsLayerUpdater.h │ │ │ ├── GraphicsTypes.cpp │ │ │ ├── GraphicsTypes.h │ │ │ ├── GraphicsTypes3D.h │ │ │ ├── HEVCUtilities.cpp │ │ │ ├── HEVCUtilities.h │ │ │ ├── Icon.cpp │ │ │ ├── Icon.h │ │ │ ├── Image.cpp │ │ │ ├── Image.h │ │ │ ├── ImageBackingStore.h │ │ │ ├── ImageBuffer.cpp │ │ │ ├── ImageBuffer.h │ │ │ ├── ImageBufferData.h │ │ │ ├── ImageDecoder.cpp │ │ │ ├── ImageDecoder.h │ │ │ ├── ImageFrame.cpp │ │ │ ├── ImageFrame.h │ │ │ ├── ImageObserver.h │ │ │ ├── ImageOrientation.cpp │ │ │ ├── ImageOrientation.h │ │ │ ├── ImageRenderingMode.h │ │ │ ├── ImageSource.cpp │ │ │ ├── ImageSource.h │ │ │ ├── ImageTypes.h │ │ │ ├── InbandTextTrackPrivate.h │ │ │ ├── InbandTextTrackPrivateClient.h │ │ │ ├── IntPoint.cpp │ │ │ ├── IntPoint.h │ │ │ ├── IntPointHash.h │ │ │ ├── IntRect.cpp │ │ │ ├── IntRect.h │ │ │ ├── IntRectExtent.h │ │ │ ├── IntRectHash.h │ │ │ ├── IntSize.cpp │ │ │ ├── IntSize.h │ │ │ ├── IntSizeHash.h │ │ │ ├── Latin1TextIterator.h │ │ │ ├── LayoutPoint.cpp │ │ │ ├── LayoutPoint.h │ │ │ ├── LayoutRect.cpp │ │ │ ├── LayoutRect.h │ │ │ ├── LayoutSize.cpp │ │ │ ├── LayoutSize.h │ │ │ ├── LegacyCDMSession.h │ │ │ ├── MediaPlaybackTarget.h │ │ │ ├── MediaPlaybackTargetClient.h │ │ │ ├── MediaPlaybackTargetContext.h │ │ │ ├── MediaPlaybackTargetPicker.cpp │ │ │ ├── MediaPlaybackTargetPicker.h │ │ │ ├── MediaPlayer.cpp │ │ │ ├── MediaPlayer.h │ │ │ ├── MediaPlayerEnums.h │ │ │ ├── MediaPlayerPrivate.h │ │ │ ├── MediaSourcePrivate.h │ │ │ ├── MediaSourcePrivateClient.h │ │ │ ├── NamedImageGeneratedImage.cpp │ │ │ ├── NamedImageGeneratedImage.h │ │ │ ├── NativeImage.h │ │ │ ├── OpenGLESShims.h │ │ │ ├── OpenGLShims.cpp │ │ │ ├── OpenGLShims.h │ │ │ ├── Path.cpp │ │ │ ├── Path.h │ │ │ ├── PathTraversalState.cpp │ │ │ ├── PathTraversalState.h │ │ │ ├── PathUtilities.cpp │ │ │ ├── PathUtilities.h │ │ │ ├── Pattern.cpp │ │ │ ├── Pattern.h │ │ │ ├── PlatformDisplay.cpp │ │ │ ├── PlatformDisplay.h │ │ │ ├── PlatformLayer.h │ │ │ ├── PlatformMediaResourceLoader.h │ │ │ ├── PlatformTextTrack.h │ │ │ ├── PlatformTimeRanges.cpp │ │ │ ├── PlatformTimeRanges.h │ │ │ ├── Region.cpp │ │ │ ├── Region.h │ │ │ ├── RemoteVideoSample.cpp │ │ │ ├── RemoteVideoSample.h │ │ │ ├── RoundedRect.cpp │ │ │ ├── RoundedRect.h │ │ │ ├── ShadowBlur.cpp │ │ │ ├── ShadowBlur.h │ │ │ ├── SourceBufferPrivate.h │ │ │ ├── SourceBufferPrivateClient.h │ │ │ ├── SpringSolver.h │ │ │ ├── StringTruncator.cpp │ │ │ ├── StringTruncator.h │ │ │ ├── StrokeStyleApplier.h │ │ │ ├── SurrogatePairAwareTextIterator.cpp │ │ │ ├── SurrogatePairAwareTextIterator.h │ │ │ ├── TabSize.h │ │ │ ├── TextRun.cpp │ │ │ ├── TextRun.h │ │ │ ├── TextTrackRepresentation.cpp │ │ │ ├── TextTrackRepresentation.h │ │ │ ├── TiledBacking.h │ │ │ ├── TrackPrivateBase.cpp │ │ │ ├── TrackPrivateBase.h │ │ │ ├── UnitBezier.h │ │ │ ├── VelocityData.cpp │ │ │ ├── VelocityData.h │ │ │ ├── VideoFullscreenLayerManager.h │ │ │ ├── VideoTrackPrivate.h │ │ │ ├── WOFFFileFormat.cpp │ │ │ ├── WOFFFileFormat.h │ │ │ ├── WidthCache.h │ │ │ ├── WidthIterator.cpp │ │ │ ├── WidthIterator.h │ │ │ ├── WindRule.h │ │ │ ├── angle │ │ │ │ ├── Extensions3DANGLE.cpp │ │ │ │ ├── Extensions3DANGLE.h │ │ │ │ ├── GraphicsContext3DANGLE.cpp │ │ │ │ ├── TemporaryANGLESetting.cpp │ │ │ │ └── TemporaryANGLESetting.h │ │ │ ├── avfoundation │ │ │ │ ├── AVTrackPrivateAVFObjCImpl.h │ │ │ │ ├── AVTrackPrivateAVFObjCImpl.mm │ │ │ │ ├── AudioSourceProviderAVFObjC.h │ │ │ │ ├── AudioSourceProviderAVFObjC.mm │ │ │ │ ├── AudioTrackPrivateAVF.h │ │ │ │ ├── CDMFairPlayStreaming.cpp │ │ │ │ ├── CDMFairPlayStreaming.h │ │ │ │ ├── CDMPrivateMediaSourceAVFObjC.h │ │ │ │ ├── CDMPrivateMediaSourceAVFObjC.mm │ │ │ │ ├── ISOFairPlayStreamingPsshBox.cpp │ │ │ │ ├── ISOFairPlayStreamingPsshBox.h │ │ │ │ ├── InbandMetadataTextTrackPrivateAVF.cpp │ │ │ │ ├── InbandMetadataTextTrackPrivateAVF.h │ │ │ │ ├── InbandTextTrackPrivateAVF.cpp │ │ │ │ ├── InbandTextTrackPrivateAVF.h │ │ │ │ ├── MediaPlaybackTargetMac.h │ │ │ │ ├── MediaPlaybackTargetMac.mm │ │ │ │ ├── MediaPlayerPrivateAVFoundation.cpp │ │ │ │ ├── MediaPlayerPrivateAVFoundation.h │ │ │ │ ├── MediaSelectionGroupAVFObjC.h │ │ │ │ ├── MediaSelectionGroupAVFObjC.mm │ │ │ │ ├── VideoTrackPrivateAVF.h │ │ │ │ ├── WebMediaSessionManagerMac.cpp │ │ │ │ ├── WebMediaSessionManagerMac.h │ │ │ │ ├── cf │ │ │ │ │ ├── AVFoundationCFSoftLinking.h │ │ │ │ │ ├── CDMSessionAVFoundationCF.cpp │ │ │ │ │ ├── CDMSessionAVFoundationCF.h │ │ │ │ │ ├── InbandTextTrackPrivateAVCF.cpp │ │ │ │ │ ├── InbandTextTrackPrivateAVCF.h │ │ │ │ │ ├── InbandTextTrackPrivateLegacyAVCF.cpp │ │ │ │ │ ├── InbandTextTrackPrivateLegacyAVCF.h │ │ │ │ │ ├── MediaPlayerPrivateAVFoundationCF.cpp │ │ │ │ │ ├── MediaPlayerPrivateAVFoundationCF.h │ │ │ │ │ ├── WebCoreAVCFResourceLoader.cpp │ │ │ │ │ └── WebCoreAVCFResourceLoader.h │ │ │ │ └── objc │ │ │ │ │ ├── AVAssetMIMETypeCache.h │ │ │ │ │ ├── AVAssetMIMETypeCache.mm │ │ │ │ │ ├── AVAssetTrackUtilities.h │ │ │ │ │ ├── AVAssetTrackUtilities.mm │ │ │ │ │ ├── AVStreamDataParserMIMETypeCache.h │ │ │ │ │ ├── AVStreamDataParserMIMETypeCache.mm │ │ │ │ │ ├── AudioTrackPrivateAVFObjC.h │ │ │ │ │ ├── AudioTrackPrivateAVFObjC.mm │ │ │ │ │ ├── AudioTrackPrivateMediaSourceAVFObjC.cpp │ │ │ │ │ ├── AudioTrackPrivateMediaSourceAVFObjC.h │ │ │ │ │ ├── CDMInstanceFairPlayStreamingAVFObjC.h │ │ │ │ │ ├── CDMInstanceFairPlayStreamingAVFObjC.mm │ │ │ │ │ ├── CDMSessionAVContentKeySession.h │ │ │ │ │ ├── CDMSessionAVContentKeySession.mm │ │ │ │ │ ├── CDMSessionAVFoundationObjC.h │ │ │ │ │ ├── CDMSessionAVFoundationObjC.mm │ │ │ │ │ ├── CDMSessionAVStreamSession.h │ │ │ │ │ ├── CDMSessionAVStreamSession.mm │ │ │ │ │ ├── CDMSessionMediaSourceAVFObjC.h │ │ │ │ │ ├── CDMSessionMediaSourceAVFObjC.mm │ │ │ │ │ ├── ImageDecoderAVFObjC.h │ │ │ │ │ ├── ImageDecoderAVFObjC.mm │ │ │ │ │ ├── InbandTextTrackPrivateAVFObjC.h │ │ │ │ │ ├── InbandTextTrackPrivateAVFObjC.mm │ │ │ │ │ ├── InbandTextTrackPrivateLegacyAVFObjC.h │ │ │ │ │ ├── InbandTextTrackPrivateLegacyAVFObjC.mm │ │ │ │ │ ├── MediaPlaybackTargetPickerMac.h │ │ │ │ │ ├── MediaPlaybackTargetPickerMac.mm │ │ │ │ │ ├── MediaPlayerPrivateAVFoundationObjC.h │ │ │ │ │ ├── MediaPlayerPrivateAVFoundationObjC.mm │ │ │ │ │ ├── MediaPlayerPrivateMediaSourceAVFObjC.h │ │ │ │ │ ├── MediaPlayerPrivateMediaSourceAVFObjC.mm │ │ │ │ │ ├── MediaPlayerPrivateMediaStreamAVFObjC.h │ │ │ │ │ ├── MediaPlayerPrivateMediaStreamAVFObjC.mm │ │ │ │ │ ├── MediaSampleAVFObjC.h │ │ │ │ │ ├── MediaSampleAVFObjC.mm │ │ │ │ │ ├── MediaSourcePrivateAVFObjC.h │ │ │ │ │ ├── MediaSourcePrivateAVFObjC.mm │ │ │ │ │ ├── OutOfBandTextTrackPrivateAVF.h │ │ │ │ │ ├── SourceBufferPrivateAVFObjC.h │ │ │ │ │ ├── SourceBufferPrivateAVFObjC.mm │ │ │ │ │ ├── VideoFullscreenLayerManagerObjC.h │ │ │ │ │ ├── VideoFullscreenLayerManagerObjC.mm │ │ │ │ │ ├── VideoTrackPrivateAVFObjC.cpp │ │ │ │ │ ├── VideoTrackPrivateAVFObjC.h │ │ │ │ │ ├── VideoTrackPrivateMediaSourceAVFObjC.h │ │ │ │ │ ├── VideoTrackPrivateMediaSourceAVFObjC.mm │ │ │ │ │ ├── WebCoreAVFResourceLoader.h │ │ │ │ │ └── WebCoreAVFResourceLoader.mm │ │ │ ├── ca │ │ │ │ ├── GraphicsLayerCA.cpp │ │ │ │ ├── GraphicsLayerCA.h │ │ │ │ ├── LayerPool.cpp │ │ │ │ ├── LayerPool.h │ │ │ │ ├── PlatformCAAnimation.cpp │ │ │ │ ├── PlatformCAAnimation.h │ │ │ │ ├── PlatformCAFilters.h │ │ │ │ ├── PlatformCALayer.cpp │ │ │ │ ├── PlatformCALayer.h │ │ │ │ ├── PlatformCALayerClient.h │ │ │ │ ├── TileController.cpp │ │ │ │ ├── TileController.h │ │ │ │ ├── TileCoverageMap.cpp │ │ │ │ ├── TileCoverageMap.h │ │ │ │ ├── TileGrid.cpp │ │ │ │ ├── TileGrid.h │ │ │ │ ├── TransformationMatrixCA.cpp │ │ │ │ ├── cocoa │ │ │ │ │ ├── PlatformCAAnimationCocoa.h │ │ │ │ │ ├── PlatformCAAnimationCocoa.mm │ │ │ │ │ ├── PlatformCAFiltersCocoa.mm │ │ │ │ │ ├── PlatformCALayerCocoa.h │ │ │ │ │ ├── PlatformCALayerCocoa.mm │ │ │ │ │ ├── WebSystemBackdropLayer.h │ │ │ │ │ ├── WebSystemBackdropLayer.mm │ │ │ │ │ ├── WebTiledBackingLayer.h │ │ │ │ │ └── WebTiledBackingLayer.mm │ │ │ │ └── win │ │ │ │ │ ├── AbstractCACFLayerTreeHost.h │ │ │ │ │ ├── CACFLayerTreeHost.cpp │ │ │ │ │ ├── CACFLayerTreeHost.h │ │ │ │ │ ├── CACFLayerTreeHostClient.h │ │ │ │ │ ├── LayerChangesFlusher.cpp │ │ │ │ │ ├── LayerChangesFlusher.h │ │ │ │ │ ├── PlatformCAAnimationWin.cpp │ │ │ │ │ ├── PlatformCAAnimationWin.h │ │ │ │ │ ├── PlatformCAFiltersWin.cpp │ │ │ │ │ ├── PlatformCALayerWin.cpp │ │ │ │ │ ├── PlatformCALayerWin.h │ │ │ │ │ ├── PlatformCALayerWinInternal.cpp │ │ │ │ │ ├── PlatformCALayerWinInternal.h │ │ │ │ │ ├── WKCACFViewLayerTreeHost.cpp │ │ │ │ │ ├── WKCACFViewLayerTreeHost.h │ │ │ │ │ ├── WebTiledBackingLayerWin.cpp │ │ │ │ │ └── WebTiledBackingLayerWin.h │ │ │ ├── cairo │ │ │ │ ├── BackingStoreBackendCairo.h │ │ │ │ ├── BackingStoreBackendCairoImpl.cpp │ │ │ │ ├── BackingStoreBackendCairoImpl.h │ │ │ │ ├── BackingStoreBackendCairoX11.cpp │ │ │ │ ├── BackingStoreBackendCairoX11.h │ │ │ │ ├── CairoOperations.cpp │ │ │ │ ├── CairoOperations.h │ │ │ │ ├── CairoUniquePtr.h │ │ │ │ ├── CairoUtilities.cpp │ │ │ │ ├── CairoUtilities.h │ │ │ │ ├── DrawErrorUnderline.h │ │ │ │ ├── FloatRectCairo.cpp │ │ │ │ ├── FontCairo.cpp │ │ │ │ ├── FontCairoHarfbuzzNG.cpp │ │ │ │ ├── FontCustomPlatformData.h │ │ │ │ ├── GradientCairo.cpp │ │ │ │ ├── GraphicsContext3DCairo.cpp │ │ │ │ ├── GraphicsContextCairo.cpp │ │ │ │ ├── GraphicsContextImplCairo.cpp │ │ │ │ ├── GraphicsContextImplCairo.h │ │ │ │ ├── GraphicsContextPlatformPrivateCairo.h │ │ │ │ ├── ImageBufferCairo.cpp │ │ │ │ ├── ImageBufferDataCairo.h │ │ │ │ ├── IntRectCairo.cpp │ │ │ │ ├── NativeImageCairo.cpp │ │ │ │ ├── PathCairo.cpp │ │ │ │ ├── PatternCairo.cpp │ │ │ │ ├── PlatformContextCairo.cpp │ │ │ │ ├── PlatformContextCairo.h │ │ │ │ ├── PlatformPathCairo.cpp │ │ │ │ ├── PlatformPathCairo.h │ │ │ │ ├── RefPtrCairo.cpp │ │ │ │ └── RefPtrCairo.h │ │ │ ├── cg │ │ │ │ ├── ColorCG.cpp │ │ │ │ ├── FloatPointCG.cpp │ │ │ │ ├── FloatRectCG.cpp │ │ │ │ ├── FloatSizeCG.cpp │ │ │ │ ├── GradientCG.cpp │ │ │ │ ├── GraphicsContext3DCG.cpp │ │ │ │ ├── GraphicsContextCG.cpp │ │ │ │ ├── GraphicsContextCG.h │ │ │ │ ├── GraphicsContextPlatformPrivateCG.h │ │ │ │ ├── IOSurfacePool.cpp │ │ │ │ ├── IOSurfacePool.h │ │ │ │ ├── ImageBufferCG.cpp │ │ │ │ ├── ImageBufferDataCG.cpp │ │ │ │ ├── ImageBufferDataCG.h │ │ │ │ ├── ImageBufferUtilitiesCG.cpp │ │ │ │ ├── ImageBufferUtilitiesCG.h │ │ │ │ ├── ImageDecoderCG.cpp │ │ │ │ ├── ImageDecoderCG.h │ │ │ │ ├── ImageSourceCG.h │ │ │ │ ├── ImageSourceCGMac.mm │ │ │ │ ├── ImageSourceCGWin.cpp │ │ │ │ ├── IntPointCG.cpp │ │ │ │ ├── IntRectCG.cpp │ │ │ │ ├── IntSizeCG.cpp │ │ │ │ ├── NativeImageCG.cpp │ │ │ │ ├── PDFDocumentImage.cpp │ │ │ │ ├── PDFDocumentImage.h │ │ │ │ ├── PathCG.cpp │ │ │ │ ├── PatternCG.cpp │ │ │ │ ├── SubimageCacheWithTimer.cpp │ │ │ │ ├── SubimageCacheWithTimer.h │ │ │ │ ├── TransformationMatrixCG.cpp │ │ │ │ ├── UTIRegistry.cpp │ │ │ │ └── UTIRegistry.h │ │ │ ├── cocoa │ │ │ │ ├── ColorCocoa.h │ │ │ │ ├── ColorCocoa.mm │ │ │ │ ├── FontCacheCoreText.cpp │ │ │ │ ├── FontCacheCoreText.h │ │ │ │ ├── FontCascadeCocoa.mm │ │ │ │ ├── FontCocoa.mm │ │ │ │ ├── FontDescriptionCocoa.cpp │ │ │ │ ├── FontFamilySpecificationCoreText.cpp │ │ │ │ ├── FontFamilySpecificationCoreText.h │ │ │ │ ├── FontPlatformDataCocoa.mm │ │ │ │ ├── GraphicsContext3DCocoa.mm │ │ │ │ ├── GraphicsContextCocoa.mm │ │ │ │ ├── HEVCUtilitiesCocoa.h │ │ │ │ ├── HEVCUtilitiesCocoa.mm │ │ │ │ ├── IOSurface.h │ │ │ │ ├── IOSurface.mm │ │ │ │ ├── IOSurfacePoolCocoa.mm │ │ │ │ ├── MediaEngineConfigurationFactoryCocoa.cpp │ │ │ │ ├── MediaEngineConfigurationFactoryCocoa.h │ │ │ │ ├── SystemFontDatabaseCoreText.cpp │ │ │ │ ├── SystemFontDatabaseCoreText.h │ │ │ │ ├── TextTrackRepresentationCocoa.h │ │ │ │ ├── TextTrackRepresentationCocoa.mm │ │ │ │ ├── WebActionDisablingCALayerDelegate.h │ │ │ │ ├── WebActionDisablingCALayerDelegate.mm │ │ │ │ ├── WebCoreCALayerExtras.h │ │ │ │ ├── WebCoreCALayerExtras.mm │ │ │ │ ├── WebCoreDecompressionSession.h │ │ │ │ ├── WebCoreDecompressionSession.mm │ │ │ │ ├── WebGLLayer.h │ │ │ │ ├── WebGLLayer.mm │ │ │ │ ├── WebGPULayer.h │ │ │ │ └── WebGPULayer.mm │ │ │ ├── cpu │ │ │ │ └── arm │ │ │ │ │ ├── GraphicsContext3DNEON.h │ │ │ │ │ └── filters │ │ │ │ │ ├── FEBlendNEON.h │ │ │ │ │ ├── FECompositeArithmeticNEON.h │ │ │ │ │ ├── FEGaussianBlurNEON.h │ │ │ │ │ ├── FELightingNEON.cpp │ │ │ │ │ ├── FELightingNEON.h │ │ │ │ │ └── NEONHelpers.h │ │ │ ├── cv │ │ │ │ ├── ImageRotationSessionVT.h │ │ │ │ ├── ImageRotationSessionVT.mm │ │ │ │ ├── ImageTransferSessionVT.h │ │ │ │ ├── ImageTransferSessionVT.mm │ │ │ │ ├── PixelBufferConformerCV.cpp │ │ │ │ ├── PixelBufferConformerCV.h │ │ │ │ ├── TextureCacheCV.h │ │ │ │ ├── TextureCacheCV.mm │ │ │ │ ├── VideoTextureCopierCV.cpp │ │ │ │ └── VideoTextureCopierCV.h │ │ │ ├── displaylists │ │ │ │ ├── DisplayList.cpp │ │ │ │ ├── DisplayList.h │ │ │ │ ├── DisplayListItems.cpp │ │ │ │ ├── DisplayListItems.h │ │ │ │ ├── DisplayListRecorder.cpp │ │ │ │ ├── DisplayListRecorder.h │ │ │ │ ├── DisplayListReplayer.cpp │ │ │ │ └── DisplayListReplayer.h │ │ │ ├── egl │ │ │ │ ├── GLContextEGL.cpp │ │ │ │ ├── GLContextEGL.h │ │ │ │ ├── GLContextEGLLibWPE.cpp │ │ │ │ ├── GLContextEGLWayland.cpp │ │ │ │ └── GLContextEGLX11.cpp │ │ │ ├── epoxy │ │ │ │ ├── EpoxyEGL.h │ │ │ │ └── EpoxyShims.h │ │ │ ├── filters │ │ │ │ ├── DistantLightSource.cpp │ │ │ │ ├── DistantLightSource.h │ │ │ │ ├── FEBlend.cpp │ │ │ │ ├── FEBlend.h │ │ │ │ ├── FEColorMatrix.cpp │ │ │ │ ├── FEColorMatrix.h │ │ │ │ ├── FEComponentTransfer.cpp │ │ │ │ ├── FEComponentTransfer.h │ │ │ │ ├── FEComposite.cpp │ │ │ │ ├── FEComposite.h │ │ │ │ ├── FEConvolveMatrix.cpp │ │ │ │ ├── FEConvolveMatrix.h │ │ │ │ ├── FEDiffuseLighting.cpp │ │ │ │ ├── FEDiffuseLighting.h │ │ │ │ ├── FEDisplacementMap.cpp │ │ │ │ ├── FEDisplacementMap.h │ │ │ │ ├── FEDropShadow.cpp │ │ │ │ ├── FEDropShadow.h │ │ │ │ ├── FEFlood.cpp │ │ │ │ ├── FEFlood.h │ │ │ │ ├── FEGaussianBlur.cpp │ │ │ │ ├── FEGaussianBlur.h │ │ │ │ ├── FELighting.cpp │ │ │ │ ├── FELighting.h │ │ │ │ ├── FEMerge.cpp │ │ │ │ ├── FEMerge.h │ │ │ │ ├── FEMorphology.cpp │ │ │ │ ├── FEMorphology.h │ │ │ │ ├── FEOffset.cpp │ │ │ │ ├── FEOffset.h │ │ │ │ ├── FESpecularLighting.cpp │ │ │ │ ├── FESpecularLighting.h │ │ │ │ ├── FETile.cpp │ │ │ │ ├── FETile.h │ │ │ │ ├── FETurbulence.cpp │ │ │ │ ├── FETurbulence.h │ │ │ │ ├── Filter.h │ │ │ │ ├── FilterEffect.cpp │ │ │ │ ├── FilterEffect.h │ │ │ │ ├── FilterOperation.cpp │ │ │ │ ├── FilterOperation.h │ │ │ │ ├── FilterOperations.cpp │ │ │ │ ├── FilterOperations.h │ │ │ │ ├── LightSource.h │ │ │ │ ├── PointLightSource.cpp │ │ │ │ ├── PointLightSource.h │ │ │ │ ├── SourceAlpha.cpp │ │ │ │ ├── SourceAlpha.h │ │ │ │ ├── SourceGraphic.cpp │ │ │ │ ├── SourceGraphic.h │ │ │ │ ├── SpotLightSource.cpp │ │ │ │ └── SpotLightSource.h │ │ │ ├── freetype │ │ │ │ ├── FcUniquePtr.h │ │ │ │ ├── FontCacheFreeType.cpp │ │ │ │ ├── FontCacheFreeType.h │ │ │ │ ├── FontCustomPlatformDataFreeType.cpp │ │ │ │ ├── FontPlatformDataFreeType.cpp │ │ │ │ ├── GlyphPageTreeNodeFreeType.cpp │ │ │ │ ├── RefPtrFontconfig.cpp │ │ │ │ ├── RefPtrFontconfig.h │ │ │ │ ├── SimpleFontDataFreeType.cpp │ │ │ │ └── UTF16UChar32Iterator.h │ │ │ ├── glx │ │ │ │ ├── GLContextGLX.cpp │ │ │ │ └── GLContextGLX.h │ │ │ ├── gpu │ │ │ │ ├── GPUBindGroup.h │ │ │ │ ├── GPUBindGroupBinding.h │ │ │ │ ├── GPUBindGroupDescriptor.h │ │ │ │ ├── GPUBindGroupLayout.h │ │ │ │ ├── GPUBlendDescriptor.h │ │ │ │ ├── GPUBuffer.cpp │ │ │ │ ├── GPUBuffer.h │ │ │ │ ├── GPUBufferBinding.h │ │ │ │ ├── GPUBufferDescriptor.h │ │ │ │ ├── GPUBufferUsage.h │ │ │ │ ├── GPUColor.h │ │ │ │ ├── GPUColorStateDescriptor.h │ │ │ │ ├── GPUColorWriteBits.h │ │ │ │ ├── GPUCommandBuffer.h │ │ │ │ ├── GPUCompareFunction.h │ │ │ │ ├── GPUComputePassEncoder.h │ │ │ │ ├── GPUComputePipeline.h │ │ │ │ ├── GPUComputePipelineDescriptor.h │ │ │ │ ├── GPUDepthStencilStateDescriptor.h │ │ │ │ ├── GPUDevice.cpp │ │ │ │ ├── GPUDevice.h │ │ │ │ ├── GPUExtent3D.h │ │ │ │ ├── GPULimits.h │ │ │ │ ├── GPULoadOp.h │ │ │ │ ├── GPUPipelineDescriptorBase.h │ │ │ │ ├── GPUPipelineLayout.cpp │ │ │ │ ├── GPUPipelineLayout.h │ │ │ │ ├── GPUPipelineLayoutDescriptor.h │ │ │ │ ├── GPUPipelineStageDescriptor.h │ │ │ │ ├── GPUProgrammablePassEncoder.cpp │ │ │ │ ├── GPUProgrammablePassEncoder.h │ │ │ │ ├── GPUQueue.h │ │ │ │ ├── GPURenderPassDescriptor.h │ │ │ │ ├── GPURenderPassEncoder.h │ │ │ │ ├── GPURenderPipeline.h │ │ │ │ ├── GPURenderPipelineDescriptor.h │ │ │ │ ├── GPURequestAdapterOptions.h │ │ │ │ ├── GPUSampler.h │ │ │ │ ├── GPUSamplerDescriptor.h │ │ │ │ ├── GPUShaderModule.h │ │ │ │ ├── GPUShaderModuleDescriptor.h │ │ │ │ ├── GPUStoreOp.h │ │ │ │ ├── GPUSwapChain.h │ │ │ │ ├── GPUSwapChainDescriptor.h │ │ │ │ ├── GPUTexture.h │ │ │ │ ├── GPUTextureDescriptor.h │ │ │ │ ├── GPUTextureFormat.h │ │ │ │ ├── GPUTextureUsage.h │ │ │ │ ├── GPUUtils.h │ │ │ │ ├── GPUVertexAttributeDescriptor.h │ │ │ │ ├── GPUVertexBufferDescriptor.h │ │ │ │ ├── GPUVertexInputDescriptor.h │ │ │ │ ├── Texture.cpp │ │ │ │ ├── Texture.h │ │ │ │ ├── TilingData.cpp │ │ │ │ ├── TilingData.h │ │ │ │ └── cocoa │ │ │ │ │ ├── GPUBindGroupLayoutMetal.mm │ │ │ │ │ ├── GPUBindGroupMetal.mm │ │ │ │ │ ├── GPUBufferMetal.mm │ │ │ │ │ ├── GPUCommandBufferMetal.mm │ │ │ │ │ ├── GPUComputePassEncoderMetal.mm │ │ │ │ │ ├── GPUComputePipelineMetal.mm │ │ │ │ │ ├── GPUDeviceMetal.mm │ │ │ │ │ ├── GPUPipelineMetalConvertLayout.cpp │ │ │ │ │ ├── GPUPipelineMetalConvertLayout.h │ │ │ │ │ ├── GPUProgrammablePassEncoderMetal.mm │ │ │ │ │ ├── GPUQueueMetal.mm │ │ │ │ │ ├── GPURenderPassEncoderMetal.mm │ │ │ │ │ ├── GPURenderPipelineMetal.mm │ │ │ │ │ ├── GPUSamplerMetal.mm │ │ │ │ │ ├── GPUShaderModuleMetal.mm │ │ │ │ │ ├── GPUSwapChainMetal.mm │ │ │ │ │ ├── GPUTextureMetal.mm │ │ │ │ │ └── GPUUtilsMetal.mm │ │ │ ├── gstreamer │ │ │ │ ├── AudioTrackPrivateGStreamer.cpp │ │ │ │ ├── AudioTrackPrivateGStreamer.h │ │ │ │ ├── GRefPtrGStreamer.cpp │ │ │ │ ├── GRefPtrGStreamer.h │ │ │ │ ├── GStreamerCommon.cpp │ │ │ │ ├── GStreamerCommon.h │ │ │ │ ├── GStreamerRegistryScanner.cpp │ │ │ │ ├── GStreamerRegistryScanner.h │ │ │ │ ├── GUniquePtrGStreamer.h │ │ │ │ ├── GstAllocatorFastMalloc.cpp │ │ │ │ ├── GstAllocatorFastMalloc.h │ │ │ │ ├── ImageGStreamer.h │ │ │ │ ├── ImageGStreamerCairo.cpp │ │ │ │ ├── ImageGStreamerUltralight.cpp │ │ │ │ ├── InbandMetadataTextTrackPrivateGStreamer.h │ │ │ │ ├── InbandTextTrackPrivateGStreamer.cpp │ │ │ │ ├── InbandTextTrackPrivateGStreamer.h │ │ │ │ ├── MainThreadNotifier.h │ │ │ │ ├── MediaEngineConfigurationFactoryGStreamer.cpp │ │ │ │ ├── MediaEngineConfigurationFactoryGStreamer.h │ │ │ │ ├── MediaPlayerPrivateGStreamer.cpp │ │ │ │ ├── MediaPlayerPrivateGStreamer.h │ │ │ │ ├── MediaPlayerPrivateGStreamerBase.cpp │ │ │ │ ├── MediaPlayerPrivateGStreamerBase.h │ │ │ │ ├── MediaPlayerRequestInstallMissingPluginsCallback.h │ │ │ │ ├── MediaSampleGStreamer.cpp │ │ │ │ ├── MediaSampleGStreamer.h │ │ │ │ ├── TextCombinerGStreamer.cpp │ │ │ │ ├── TextCombinerGStreamer.h │ │ │ │ ├── TextSinkGStreamer.cpp │ │ │ │ ├── TextSinkGStreamer.h │ │ │ │ ├── TrackPrivateBaseGStreamer.cpp │ │ │ │ ├── TrackPrivateBaseGStreamer.h │ │ │ │ ├── VideoSinkGStreamer.cpp │ │ │ │ ├── VideoSinkGStreamer.h │ │ │ │ ├── VideoTextureCopierGStreamer.cpp │ │ │ │ ├── VideoTextureCopierGStreamer.h │ │ │ │ ├── VideoTrackPrivateGStreamer.cpp │ │ │ │ ├── VideoTrackPrivateGStreamer.h │ │ │ │ ├── WebKitWebSourceGStreamer.cpp │ │ │ │ ├── WebKitWebSourceGStreamer.h │ │ │ │ ├── eme │ │ │ │ │ ├── CDMFactoryGStreamer.cpp │ │ │ │ │ ├── GStreamerEMEUtilities.h │ │ │ │ │ ├── WebKitClearKeyDecryptorGStreamer.cpp │ │ │ │ │ ├── WebKitClearKeyDecryptorGStreamer.h │ │ │ │ │ ├── WebKitCommonEncryptionDecryptorGStreamer.cpp │ │ │ │ │ └── WebKitCommonEncryptionDecryptorGStreamer.h │ │ │ │ └── mse │ │ │ │ │ ├── AppendPipeline.cpp │ │ │ │ │ ├── AppendPipeline.h │ │ │ │ │ ├── GStreamerMediaDescription.cpp │ │ │ │ │ ├── GStreamerMediaDescription.h │ │ │ │ │ ├── GStreamerRegistryScannerMSE.cpp │ │ │ │ │ ├── GStreamerRegistryScannerMSE.h │ │ │ │ │ ├── MediaPlayerPrivateGStreamerMSE.cpp │ │ │ │ │ ├── MediaPlayerPrivateGStreamerMSE.h │ │ │ │ │ ├── MediaSourceClientGStreamerMSE.cpp │ │ │ │ │ ├── MediaSourceClientGStreamerMSE.h │ │ │ │ │ ├── MediaSourceGStreamer.cpp │ │ │ │ │ ├── MediaSourceGStreamer.h │ │ │ │ │ ├── PlaybackPipeline.cpp │ │ │ │ │ ├── PlaybackPipeline.h │ │ │ │ │ ├── SourceBufferPrivateGStreamer.cpp │ │ │ │ │ ├── SourceBufferPrivateGStreamer.h │ │ │ │ │ ├── WebKitMediaSourceGStreamer.cpp │ │ │ │ │ ├── WebKitMediaSourceGStreamer.h │ │ │ │ │ └── WebKitMediaSourceGStreamerPrivate.h │ │ │ ├── gtk │ │ │ │ ├── ColorGtk.cpp │ │ │ │ ├── DisplayRefreshMonitorGtk.cpp │ │ │ │ ├── DisplayRefreshMonitorGtk.h │ │ │ │ ├── GdkCairoUtilities.cpp │ │ │ │ ├── GdkCairoUtilities.h │ │ │ │ ├── IconGtk.cpp │ │ │ │ ├── ImageBufferGtk.cpp │ │ │ │ └── ImageGtk.cpp │ │ │ ├── harfbuzz │ │ │ │ ├── ComplexTextControllerHarfBuzz.cpp │ │ │ │ ├── HarfBuzzFaceUltralight.cpp │ │ │ │ └── HbUniquePtr.h │ │ │ ├── holepunch │ │ │ │ ├── MediaPlayerPrivateHolePunch.cpp │ │ │ │ └── MediaPlayerPrivateHolePunch.h │ │ │ ├── ios │ │ │ │ ├── DisplayRefreshMonitorIOS.h │ │ │ │ ├── DisplayRefreshMonitorIOS.mm │ │ │ │ ├── FontAntialiasingStateSaver.h │ │ │ │ ├── FontCacheIOS.mm │ │ │ │ ├── GraphicsContext3DIOS.h │ │ │ │ └── IconIOS.mm │ │ │ ├── iso │ │ │ │ ├── ISOBox.cpp │ │ │ │ ├── ISOBox.h │ │ │ │ ├── ISOOriginalFormatBox.cpp │ │ │ │ ├── ISOOriginalFormatBox.h │ │ │ │ ├── ISOProtectionSchemeInfoBox.cpp │ │ │ │ ├── ISOProtectionSchemeInfoBox.h │ │ │ │ ├── ISOProtectionSystemSpecificHeaderBox.cpp │ │ │ │ ├── ISOProtectionSystemSpecificHeaderBox.h │ │ │ │ ├── ISOSchemeInformationBox.cpp │ │ │ │ ├── ISOSchemeInformationBox.h │ │ │ │ ├── ISOSchemeTypeBox.cpp │ │ │ │ ├── ISOSchemeTypeBox.h │ │ │ │ ├── ISOTrackEncryptionBox.cpp │ │ │ │ ├── ISOTrackEncryptionBox.h │ │ │ │ ├── ISOVTTCue.cpp │ │ │ │ └── ISOVTTCue.h │ │ │ ├── libwpe │ │ │ │ ├── PlatformDisplayLibWPE.cpp │ │ │ │ └── PlatformDisplayLibWPE.h │ │ │ ├── mac │ │ │ │ ├── ColorMac.h │ │ │ │ ├── ColorMac.mm │ │ │ │ ├── ComplexTextControllerCoreText.mm │ │ │ │ ├── DisplayRefreshMonitorMac.cpp │ │ │ │ ├── DisplayRefreshMonitorMac.h │ │ │ │ ├── FloatPointMac.mm │ │ │ │ ├── FloatRectMac.mm │ │ │ │ ├── FloatSizeMac.mm │ │ │ │ ├── FontCacheMac.mm │ │ │ │ ├── FontCustomPlatformData.cpp │ │ │ │ ├── FontCustomPlatformData.h │ │ │ │ ├── GlyphPageMac.cpp │ │ │ │ ├── IconMac.mm │ │ │ │ ├── ImageMac.mm │ │ │ │ ├── IntPointMac.mm │ │ │ │ ├── IntRectMac.mm │ │ │ │ ├── IntSizeMac.mm │ │ │ │ ├── PDFDocumentImageMac.mm │ │ │ │ ├── SimpleFontDataCoreText.cpp │ │ │ │ ├── SwitchingGPUClient.cpp │ │ │ │ ├── SwitchingGPUClient.h │ │ │ │ ├── WebKitNSImageExtras.h │ │ │ │ ├── WebKitNSImageExtras.mm │ │ │ │ ├── WebLayer.h │ │ │ │ └── WebLayer.mm │ │ │ ├── nicosia │ │ │ │ ├── NicosiaAnimatedBackingStoreClient.h │ │ │ │ ├── NicosiaBuffer.cpp │ │ │ │ ├── NicosiaBuffer.h │ │ │ │ ├── NicosiaPaintingContext.cpp │ │ │ │ ├── NicosiaPaintingContext.h │ │ │ │ ├── NicosiaPaintingEngine.cpp │ │ │ │ ├── NicosiaPaintingEngine.h │ │ │ │ ├── NicosiaPaintingEngineBasic.cpp │ │ │ │ ├── NicosiaPaintingEngineBasic.h │ │ │ │ ├── NicosiaPaintingEngineThreaded.cpp │ │ │ │ ├── NicosiaPaintingEngineThreaded.h │ │ │ │ ├── NicosiaPaintingOperation.h │ │ │ │ ├── NicosiaPlatformLayer.cpp │ │ │ │ ├── NicosiaPlatformLayer.h │ │ │ │ ├── NicosiaScene.cpp │ │ │ │ ├── NicosiaScene.h │ │ │ │ ├── NicosiaSceneIntegration.cpp │ │ │ │ ├── NicosiaSceneIntegration.h │ │ │ │ ├── cairo │ │ │ │ │ ├── NicosiaCairoOperationRecorder.cpp │ │ │ │ │ ├── NicosiaCairoOperationRecorder.h │ │ │ │ │ ├── NicosiaPaintingContextCairo.cpp │ │ │ │ │ ├── NicosiaPaintingContextCairo.h │ │ │ │ │ └── NicosiaPaintingOperationReplayCairo.h │ │ │ │ └── texmap │ │ │ │ │ ├── NicosiaBackingStoreTextureMapperImpl.cpp │ │ │ │ │ ├── NicosiaBackingStoreTextureMapperImpl.h │ │ │ │ │ ├── NicosiaCompositionLayerTextureMapperImpl.cpp │ │ │ │ │ ├── NicosiaCompositionLayerTextureMapperImpl.h │ │ │ │ │ ├── NicosiaContentLayerTextureMapperImpl.cpp │ │ │ │ │ ├── NicosiaContentLayerTextureMapperImpl.h │ │ │ │ │ ├── NicosiaGC3DLayer.cpp │ │ │ │ │ ├── NicosiaGC3DLayer.h │ │ │ │ │ ├── NicosiaImageBackingTextureMapperImpl.cpp │ │ │ │ │ └── NicosiaImageBackingTextureMapperImpl.h │ │ │ ├── opengl │ │ │ │ ├── Extensions3DOpenGL.cpp │ │ │ │ ├── Extensions3DOpenGL.h │ │ │ │ ├── Extensions3DOpenGLCommon.cpp │ │ │ │ ├── Extensions3DOpenGLCommon.h │ │ │ │ ├── Extensions3DOpenGLES.cpp │ │ │ │ ├── Extensions3DOpenGLES.h │ │ │ │ ├── GraphicsContext3DOpenGL.cpp │ │ │ │ ├── GraphicsContext3DOpenGLCommon.cpp │ │ │ │ ├── GraphicsContext3DOpenGLES.cpp │ │ │ │ ├── TemporaryOpenGLSetting.cpp │ │ │ │ └── TemporaryOpenGLSetting.h │ │ │ ├── opentype │ │ │ │ ├── OpenTypeCG.cpp │ │ │ │ ├── OpenTypeCG.h │ │ │ │ ├── OpenTypeMathData.cpp │ │ │ │ ├── OpenTypeMathData.h │ │ │ │ ├── OpenTypeTypes.h │ │ │ │ ├── OpenTypeUtilities.cpp │ │ │ │ ├── OpenTypeUtilities.h │ │ │ │ ├── OpenTypeVerticalData.cpp │ │ │ │ └── OpenTypeVerticalData.h │ │ │ ├── texmap │ │ │ │ ├── BitmapTexture.cpp │ │ │ │ ├── BitmapTexture.h │ │ │ │ ├── BitmapTextureGL.cpp │ │ │ │ ├── BitmapTextureGL.h │ │ │ │ ├── BitmapTexturePool.cpp │ │ │ │ ├── BitmapTexturePool.h │ │ │ │ ├── BitmapTextureUltralight.cpp │ │ │ │ ├── BitmapTextureUltralight.h │ │ │ │ ├── ClipStack.cpp │ │ │ │ ├── ClipStack.h │ │ │ │ ├── GraphicsContext3DTextureMapper.cpp │ │ │ │ ├── GraphicsLayerTextureMapper.cpp │ │ │ │ ├── GraphicsLayerTextureMapper.h │ │ │ │ ├── TextureMapper.cpp │ │ │ │ ├── TextureMapper.h │ │ │ │ ├── TextureMapperAnimation.cpp │ │ │ │ ├── TextureMapperAnimation.h │ │ │ │ ├── TextureMapperBackingStore.cpp │ │ │ │ ├── TextureMapperBackingStore.h │ │ │ │ ├── TextureMapperContextAttributes.cpp │ │ │ │ ├── TextureMapperContextAttributes.h │ │ │ │ ├── TextureMapperFPSCounter.cpp │ │ │ │ ├── TextureMapperFPSCounter.h │ │ │ │ ├── TextureMapperGC3DPlatformLayer.cpp │ │ │ │ ├── TextureMapperGC3DPlatformLayer.h │ │ │ │ ├── TextureMapperGL.cpp │ │ │ │ ├── TextureMapperGL.h │ │ │ │ ├── TextureMapperGLHeaders.h │ │ │ │ ├── TextureMapperLayer.cpp │ │ │ │ ├── TextureMapperLayer.h │ │ │ │ ├── TextureMapperPlatformLayer.h │ │ │ │ ├── TextureMapperPlatformLayerBuffer.cpp │ │ │ │ ├── TextureMapperPlatformLayerBuffer.h │ │ │ │ ├── TextureMapperPlatformLayerProxy.cpp │ │ │ │ ├── TextureMapperPlatformLayerProxy.h │ │ │ │ ├── TextureMapperPlatformLayerProxyProvider.h │ │ │ │ ├── TextureMapperShaderProgram.cpp │ │ │ │ ├── TextureMapperShaderProgram.h │ │ │ │ ├── TextureMapperTile.cpp │ │ │ │ ├── TextureMapperTile.h │ │ │ │ ├── TextureMapperTiledBackingStore.cpp │ │ │ │ ├── TextureMapperTiledBackingStore.h │ │ │ │ ├── TextureMapperUltralight.cpp │ │ │ │ ├── TextureMapperUltralight.h │ │ │ │ └── coordinated │ │ │ │ │ ├── CoordinatedBackingStore.cpp │ │ │ │ │ ├── CoordinatedBackingStore.h │ │ │ │ │ ├── CoordinatedGraphicsLayer.cpp │ │ │ │ │ ├── CoordinatedGraphicsLayer.h │ │ │ │ │ ├── CoordinatedGraphicsState.h │ │ │ │ │ ├── SurfaceUpdateInfo.h │ │ │ │ │ ├── Tile.cpp │ │ │ │ │ ├── Tile.h │ │ │ │ │ ├── TiledBackingStore.cpp │ │ │ │ │ ├── TiledBackingStore.h │ │ │ │ │ └── TiledBackingStoreClient.h │ │ │ ├── transforms │ │ │ │ ├── AffineTransform.cpp │ │ │ │ ├── AffineTransform.h │ │ │ │ ├── IdentityTransformOperation.h │ │ │ │ ├── Matrix3DTransformOperation.cpp │ │ │ │ ├── Matrix3DTransformOperation.h │ │ │ │ ├── MatrixTransformOperation.cpp │ │ │ │ ├── MatrixTransformOperation.h │ │ │ │ ├── PerspectiveTransformOperation.cpp │ │ │ │ ├── PerspectiveTransformOperation.h │ │ │ │ ├── RotateTransformOperation.cpp │ │ │ │ ├── RotateTransformOperation.h │ │ │ │ ├── ScaleTransformOperation.cpp │ │ │ │ ├── ScaleTransformOperation.h │ │ │ │ ├── SkewTransformOperation.cpp │ │ │ │ ├── SkewTransformOperation.h │ │ │ │ ├── TransformOperation.cpp │ │ │ │ ├── TransformOperation.h │ │ │ │ ├── TransformOperations.cpp │ │ │ │ ├── TransformOperations.h │ │ │ │ ├── TransformState.cpp │ │ │ │ ├── TransformState.h │ │ │ │ ├── TransformationMatrix.cpp │ │ │ │ ├── TransformationMatrix.h │ │ │ │ ├── TranslateTransformOperation.cpp │ │ │ │ └── TranslateTransformOperation.h │ │ │ ├── ultralight │ │ │ │ ├── BitmapImageUltralight.cpp │ │ │ │ ├── CanvasImage.cpp │ │ │ │ ├── CanvasImage.h │ │ │ │ ├── FloatRectUltralight.cpp │ │ │ │ ├── FontCacheUltralight.cpp │ │ │ │ ├── FontCustomPlatformData.cpp │ │ │ │ ├── FontCustomPlatformData.h │ │ │ │ ├── FontPlatformDataUltralight.cpp │ │ │ │ ├── FontRenderer.cpp │ │ │ │ ├── FontRenderer.h │ │ │ │ ├── FontUltralight.cpp │ │ │ │ ├── FreeTypeLib.cpp │ │ │ │ ├── FreeTypeLib.h │ │ │ │ ├── GlyphPageUltralight.cpp │ │ │ │ ├── GradientUltralight.cpp │ │ │ │ ├── GraphicsContextPlatformPrivateUltralight.h │ │ │ │ ├── GraphicsContextUltralight.cpp │ │ │ │ ├── ImageBufferDataUltralight.h │ │ │ │ ├── ImageBufferUltralight.cpp │ │ │ │ ├── ImageDecoderUltralight.cpp │ │ │ │ ├── ImageUltralight.cpp │ │ │ │ ├── IntRectUltralight.cpp │ │ │ │ ├── NativeImageUltralight.cpp │ │ │ │ ├── PathUltralight.cpp │ │ │ │ ├── PatternUltralight.cpp │ │ │ │ ├── PlatformContextUltralight.cpp │ │ │ │ ├── PlatformContextUltralight.h │ │ │ │ ├── PlatformFontFreeType.cpp │ │ │ │ ├── PlatformFontFreeType.h │ │ │ │ ├── RefPtrFreeTypeFace.cpp │ │ │ │ ├── RefPtrFreeTypeFace.h │ │ │ │ ├── RefPtrUltralight.cpp │ │ │ │ ├── RefPtrUltralight.h │ │ │ │ ├── TransformationMatrixUltralight.cpp │ │ │ │ ├── UTF16UChar32Iterator.h │ │ │ │ └── UltralightStubs.cpp │ │ │ ├── wayland │ │ │ │ ├── PlatformDisplayWayland.cpp │ │ │ │ ├── PlatformDisplayWayland.h │ │ │ │ └── WlUniquePtr.h │ │ │ ├── win │ │ │ │ ├── ColorDirect2D.cpp │ │ │ │ ├── ComplexTextControllerDirectWrite.cpp │ │ │ │ ├── DIBPixelData.cpp │ │ │ │ ├── DIBPixelData.h │ │ │ │ ├── FloatPointDirect2D.cpp │ │ │ │ ├── FloatRectDirect2D.cpp │ │ │ │ ├── FloatSizeDirect2D.cpp │ │ │ │ ├── FontCGWin.cpp │ │ │ │ ├── FontCacheWin.cpp │ │ │ │ ├── FontCascadeDirect2D.cpp │ │ │ │ ├── FontCustomPlatformData.cpp │ │ │ │ ├── FontCustomPlatformData.h │ │ │ │ ├── FontCustomPlatformDataCairo.cpp │ │ │ │ ├── FontPlatformDataCGWin.cpp │ │ │ │ ├── FontPlatformDataCairoWin.cpp │ │ │ │ ├── FontPlatformDataDirect2D.cpp │ │ │ │ ├── FontPlatformDataWin.cpp │ │ │ │ ├── FontWin.cpp │ │ │ │ ├── FullScreenController.cpp │ │ │ │ ├── FullScreenController.h │ │ │ │ ├── FullScreenControllerClient.h │ │ │ │ ├── GlyphPageTreeNodeCGWin.cpp │ │ │ │ ├── GlyphPageTreeNodeCairoWin.cpp │ │ │ │ ├── GlyphPageTreeNodeDirect2D.cpp │ │ │ │ ├── GradientDirect2D.cpp │ │ │ │ ├── GraphicsContextCGWin.cpp │ │ │ │ ├── GraphicsContextCairoWin.cpp │ │ │ │ ├── GraphicsContextDirect2D.cpp │ │ │ │ ├── GraphicsContextPlatformPrivateDirect2D.h │ │ │ │ ├── GraphicsContextWin.cpp │ │ │ │ ├── GraphicsLayerDirect2D.cpp │ │ │ │ ├── GraphicsLayerDirect2D.h │ │ │ │ ├── IconWin.cpp │ │ │ │ ├── ImageBufferDataDirect2D.cpp │ │ │ │ ├── ImageBufferDataDirect2D.h │ │ │ │ ├── ImageBufferDirect2D.cpp │ │ │ │ ├── ImageCGWin.cpp │ │ │ │ ├── ImageCairoWin.cpp │ │ │ │ ├── ImageDecoderDirect2D.cpp │ │ │ │ ├── ImageDecoderDirect2D.h │ │ │ │ ├── ImageDirect2D.cpp │ │ │ │ ├── ImageWin.cpp │ │ │ │ ├── IntPointWin.cpp │ │ │ │ ├── IntRectWin.cpp │ │ │ │ ├── IntSizeWin.cpp │ │ │ │ ├── LocalWindowsContext.h │ │ │ │ ├── MediaPlayerPrivateFullscreenWindow.cpp │ │ │ │ ├── MediaPlayerPrivateFullscreenWindow.h │ │ │ │ ├── MediaPlayerPrivateMediaFoundation.cpp │ │ │ │ ├── MediaPlayerPrivateMediaFoundation.h │ │ │ │ ├── NativeImageDirect2D.cpp │ │ │ │ ├── PathDirect2D.cpp │ │ │ │ ├── PatternDirect2D.cpp │ │ │ │ ├── PlatformDisplayWin.h │ │ │ │ ├── SharedGDIObject.h │ │ │ │ ├── SimpleFontDataCGWin.cpp │ │ │ │ ├── SimpleFontDataCairoWin.cpp │ │ │ │ ├── SimpleFontDataDirect2D.cpp │ │ │ │ ├── SimpleFontDataWin.cpp │ │ │ │ ├── TextAnalyzerHelper.cpp │ │ │ │ ├── TextAnalyzerHelper.h │ │ │ │ ├── TransformationMatrixDirect2D.cpp │ │ │ │ ├── TransformationMatrixWin.cpp │ │ │ │ ├── UniscribeController.cpp │ │ │ │ ├── UniscribeController.h │ │ │ │ ├── WKCAImageQueue.cpp │ │ │ │ └── WKCAImageQueue.h │ │ │ └── x11 │ │ │ │ ├── PlatformDisplayX11.cpp │ │ │ │ ├── PlatformDisplayX11.h │ │ │ │ ├── XErrorTrapper.cpp │ │ │ │ ├── XErrorTrapper.h │ │ │ │ ├── XUniquePtr.h │ │ │ │ ├── XUniqueResource.cpp │ │ │ │ └── XUniqueResource.h │ │ ├── gtk │ │ │ ├── CompositionResults.h │ │ │ ├── CursorGtk.cpp │ │ │ ├── DragDataGtk.cpp │ │ │ ├── DragImageGtk.cpp │ │ │ ├── GRefPtrGtk.cpp │ │ │ ├── GRefPtrGtk.h │ │ │ ├── GUniquePtrGtk.h │ │ │ ├── GtkUtilities.cpp │ │ │ ├── GtkUtilities.h │ │ │ ├── LocalizedStringsGtk.cpp │ │ │ ├── PasteboardGtk.cpp │ │ │ ├── PasteboardHelper.cpp │ │ │ ├── PasteboardHelper.h │ │ │ ├── PlatformKeyboardEventGtk.cpp │ │ │ ├── PlatformMouseEventGtk.cpp │ │ │ ├── PlatformPasteboardGtk.cpp │ │ │ ├── PlatformScreenGtk.cpp │ │ │ ├── PlatformWheelEventGtk.cpp │ │ │ ├── RenderThemeGadget.cpp │ │ │ ├── RenderThemeGadget.h │ │ │ ├── RenderThemeWidget.cpp │ │ │ ├── RenderThemeWidget.h │ │ │ ├── ScrollbarThemeGtk.cpp │ │ │ ├── ScrollbarThemeGtk.h │ │ │ ├── SelectionData.cpp │ │ │ ├── SelectionData.h │ │ │ ├── WidgetGtk.cpp │ │ │ └── po │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makevars │ │ │ │ ├── POTFILES.in │ │ │ │ ├── ar.po │ │ │ │ ├── as.po │ │ │ │ ├── bg.po │ │ │ │ ├── ca.po │ │ │ │ ├── cs.po │ │ │ │ ├── da.po │ │ │ │ ├── de.po │ │ │ │ ├── el.po │ │ │ │ ├── en_CA.po │ │ │ │ ├── en_GB.po │ │ │ │ ├── eo.po │ │ │ │ ├── es.po │ │ │ │ ├── et.po │ │ │ │ ├── eu.po │ │ │ │ ├── fi.po │ │ │ │ ├── fr.po │ │ │ │ ├── gl.po │ │ │ │ ├── gu.po │ │ │ │ ├── he.po │ │ │ │ ├── hi.po │ │ │ │ ├── hu.po │ │ │ │ ├── id.po │ │ │ │ ├── it.po │ │ │ │ ├── ja.po │ │ │ │ ├── kn.po │ │ │ │ ├── ko.po │ │ │ │ ├── lt.po │ │ │ │ ├── lv.po │ │ │ │ ├── ml.po │ │ │ │ ├── mr.po │ │ │ │ ├── nb.po │ │ │ │ ├── nl.po │ │ │ │ ├── or.po │ │ │ │ ├── pa.po │ │ │ │ ├── pl.po │ │ │ │ ├── pt.po │ │ │ │ ├── pt_BR.po │ │ │ │ ├── ro.po │ │ │ │ ├── ru.po │ │ │ │ ├── sl.po │ │ │ │ ├── sr.po │ │ │ │ ├── sr@latin.po │ │ │ │ ├── sv.po │ │ │ │ ├── ta.po │ │ │ │ ├── te.po │ │ │ │ ├── tr.po │ │ │ │ ├── uk.po │ │ │ │ ├── vi.po │ │ │ │ └── zh_CN.po │ │ ├── image-decoders │ │ │ ├── ScalableImageDecoder.cpp │ │ │ ├── ScalableImageDecoder.h │ │ │ ├── ScalableImageDecoderFrame.cpp │ │ │ ├── ScalableImageDecoderFrame.h │ │ │ ├── bmp │ │ │ │ ├── BMPImageDecoder.cpp │ │ │ │ ├── BMPImageDecoder.h │ │ │ │ ├── BMPImageReader.cpp │ │ │ │ └── BMPImageReader.h │ │ │ ├── cairo │ │ │ │ └── ImageBackingStoreCairo.cpp │ │ │ ├── gif │ │ │ │ ├── GIFImageDecoder.cpp │ │ │ │ ├── GIFImageDecoder.h │ │ │ │ ├── GIFImageReader.cpp │ │ │ │ └── GIFImageReader.h │ │ │ ├── ico │ │ │ │ ├── ICOImageDecoder.cpp │ │ │ │ └── ICOImageDecoder.h │ │ │ ├── jpeg │ │ │ │ ├── JPEGImageDecoder.cpp │ │ │ │ └── JPEGImageDecoder.h │ │ │ ├── jpeg2000 │ │ │ │ ├── JPEG2000ImageDecoder.cpp │ │ │ │ └── JPEG2000ImageDecoder.h │ │ │ ├── png │ │ │ │ ├── PNGImageDecoder.cpp │ │ │ │ └── PNGImageDecoder.h │ │ │ ├── ultralight │ │ │ │ └── ImageBackingStoreUltralight.cpp │ │ │ └── webp │ │ │ │ ├── WEBPImageDecoder.cpp │ │ │ │ └── WEBPImageDecoder.h │ │ ├── ios │ │ │ ├── AbstractPasteboard.h │ │ │ ├── ColorIOS.h │ │ │ ├── ColorIOS.mm │ │ │ ├── CursorIOS.cpp │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── DeviceMotionClientIOS.h │ │ │ ├── DeviceMotionClientIOS.mm │ │ │ ├── DeviceOrientationClientIOS.h │ │ │ ├── DeviceOrientationClientIOS.mm │ │ │ ├── DragImageIOS.mm │ │ │ ├── EventLoopIOS.mm │ │ │ ├── KeyEventCodesIOS.h │ │ │ ├── KeyEventIOS.mm │ │ │ ├── LegacyTileCache.h │ │ │ ├── LegacyTileCache.mm │ │ │ ├── LegacyTileGrid.h │ │ │ ├── LegacyTileGrid.mm │ │ │ ├── LegacyTileGridTile.h │ │ │ ├── LegacyTileGridTile.mm │ │ │ ├── LegacyTileLayer.h │ │ │ ├── LegacyTileLayer.mm │ │ │ ├── LegacyTileLayerPool.h │ │ │ ├── LegacyTileLayerPool.mm │ │ │ ├── LocalCurrentTraitCollection.h │ │ │ ├── LocalCurrentTraitCollection.mm │ │ │ ├── LowPowerModeNotifierIOS.mm │ │ │ ├── PasteboardIOS.mm │ │ │ ├── PlatformEventFactoryIOS.h │ │ │ ├── PlatformEventFactoryIOS.mm │ │ │ ├── PlatformPasteboardIOS.mm │ │ │ ├── PlatformScreenIOS.mm │ │ │ ├── PlatformSpeechSynthesizerIOS.mm │ │ │ ├── PlaybackSessionInterfaceAVKit.h │ │ │ ├── PlaybackSessionInterfaceAVKit.mm │ │ │ ├── QuickLook.h │ │ │ ├── QuickLook.mm │ │ │ ├── RemoteCommandListenerIOS.h │ │ │ ├── RemoteCommandListenerIOS.mm │ │ │ ├── ScrollAnimatorIOS.h │ │ │ ├── ScrollAnimatorIOS.mm │ │ │ ├── ScrollViewIOS.mm │ │ │ ├── ScrollbarThemeIOS.h │ │ │ ├── ScrollbarThemeIOS.mm │ │ │ ├── SelectionRect.cpp │ │ │ ├── SelectionRect.h │ │ │ ├── SystemMemory.h │ │ │ ├── SystemMemoryIOS.cpp │ │ │ ├── ThemeIOS.h │ │ │ ├── ThemeIOS.mm │ │ │ ├── TileControllerMemoryHandlerIOS.cpp │ │ │ ├── TileControllerMemoryHandlerIOS.h │ │ │ ├── UserAgentIOS.mm │ │ │ ├── ValidationBubbleIOS.mm │ │ │ ├── VideoFullscreenInterfaceAVKit.h │ │ │ ├── VideoFullscreenInterfaceAVKit.mm │ │ │ ├── WebAVPlayerController.h │ │ │ ├── WebAVPlayerController.mm │ │ │ ├── WebBackgroundTaskController.h │ │ │ ├── WebBackgroundTaskController.mm │ │ │ ├── WebCoreMotionManager.h │ │ │ ├── WebCoreMotionManager.mm │ │ │ ├── WebEvent.h │ │ │ ├── WebEvent.mm │ │ │ ├── WebItemProviderPasteboard.h │ │ │ ├── WebItemProviderPasteboard.mm │ │ │ ├── WebSQLiteDatabaseTrackerClient.h │ │ │ ├── WebSQLiteDatabaseTrackerClient.mm │ │ │ ├── WebVideoFullscreenControllerAVKit.h │ │ │ ├── WebVideoFullscreenControllerAVKit.mm │ │ │ ├── WidgetIOS.mm │ │ │ └── wak │ │ │ │ ├── FloatingPointEnvironment.cpp │ │ │ │ ├── FloatingPointEnvironment.h │ │ │ │ ├── WAKAppKitStubs.h │ │ │ │ ├── WAKAppKitStubs.m │ │ │ │ ├── WAKClipView.h │ │ │ │ ├── WAKClipView.m │ │ │ │ ├── WAKResponder.h │ │ │ │ ├── WAKResponder.m │ │ │ │ ├── WAKScrollView.h │ │ │ │ ├── WAKScrollView.mm │ │ │ │ ├── WAKView.h │ │ │ │ ├── WAKView.mm │ │ │ │ ├── WAKViewInternal.h │ │ │ │ ├── WAKWindow.h │ │ │ │ ├── WAKWindow.mm │ │ │ │ ├── WKContentObservation.h │ │ │ │ ├── WKGraphics.h │ │ │ │ ├── WKGraphics.mm │ │ │ │ ├── WKTypes.h │ │ │ │ ├── WKUtilities.c │ │ │ │ ├── WKUtilities.h │ │ │ │ ├── WKView.h │ │ │ │ ├── WKView.mm │ │ │ │ ├── WKViewPrivate.h │ │ │ │ ├── WebCoreThread.h │ │ │ │ ├── WebCoreThread.mm │ │ │ │ ├── WebCoreThreadInternal.h │ │ │ │ ├── WebCoreThreadMessage.h │ │ │ │ ├── WebCoreThreadRun.cpp │ │ │ │ ├── WebCoreThreadRun.h │ │ │ │ ├── WebCoreThreadSystemInterface.cpp │ │ │ │ └── WebCoreThreadSystemInterface.h │ │ ├── libwpe │ │ │ ├── PasteboardLibWPE.cpp │ │ │ ├── PlatformKeyboardEventLibWPE.cpp │ │ │ └── PlatformPasteboardLibWPE.cpp │ │ ├── mac │ │ │ ├── BlacklistUpdater.h │ │ │ ├── BlacklistUpdater.mm │ │ │ ├── CursorMac.mm │ │ │ ├── DragDataMac.mm │ │ │ ├── DragImageMac.mm │ │ │ ├── DynamicLinkerInterposing.h │ │ │ ├── EventLoopMac.mm │ │ │ ├── KeyEventMac.mm │ │ │ ├── LegacyNSPasteboardTypes.h │ │ │ ├── LocalCurrentGraphicsContext.h │ │ │ ├── LocalCurrentGraphicsContext.mm │ │ │ ├── LocalDefaultSystemAppearance.h │ │ │ ├── LocalDefaultSystemAppearance.mm │ │ │ ├── LoggingMac.mm │ │ │ ├── MediaRemoteSoftLink.cpp │ │ │ ├── MediaRemoteSoftLink.h │ │ │ ├── NSScrollerImpDetails.h │ │ │ ├── NSScrollerImpDetails.mm │ │ │ ├── PasteboardMac.mm │ │ │ ├── PasteboardWriter.h │ │ │ ├── PasteboardWriter.mm │ │ │ ├── PlatformEventFactoryMac.h │ │ │ ├── PlatformEventFactoryMac.mm │ │ │ ├── PlatformPasteboardMac.mm │ │ │ ├── PlatformScreenMac.mm │ │ │ ├── PlatformSpeechSynthesizerMac.mm │ │ │ ├── PlaybackSessionInterfaceMac.h │ │ │ ├── PlaybackSessionInterfaceMac.mm │ │ │ ├── PluginBlacklist.h │ │ │ ├── PluginBlacklist.mm │ │ │ ├── PowerObserverMac.cpp │ │ │ ├── PowerObserverMac.h │ │ │ ├── PublicSuffixMac.mm │ │ │ ├── RemoteCommandListenerMac.h │ │ │ ├── RemoteCommandListenerMac.mm │ │ │ ├── SSLKeyGeneratorMac.mm │ │ │ ├── ScrollAnimatorMac.h │ │ │ ├── ScrollAnimatorMac.mm │ │ │ ├── ScrollViewMac.mm │ │ │ ├── ScrollbarThemeMac.h │ │ │ ├── ScrollbarThemeMac.mm │ │ │ ├── SerializedPlatformRepresentationMac.h │ │ │ ├── SerializedPlatformRepresentationMac.mm │ │ │ ├── StringUtilities.h │ │ │ ├── StringUtilities.mm │ │ │ ├── SuddenTermination.mm │ │ │ ├── ThemeMac.h │ │ │ ├── ThemeMac.mm │ │ │ ├── ThreadCheck.mm │ │ │ ├── UserActivityMac.mm │ │ │ ├── UserAgentMac.mm │ │ │ ├── ValidationBubbleMac.mm │ │ │ ├── VideoFullscreenInterfaceMac.h │ │ │ ├── VideoFullscreenInterfaceMac.mm │ │ │ ├── WebCoreFullScreenPlaceholderView.h │ │ │ ├── WebCoreFullScreenPlaceholderView.mm │ │ │ ├── WebCoreFullScreenWarningView.h │ │ │ ├── WebCoreFullScreenWarningView.mm │ │ │ ├── WebCoreFullScreenWindow.h │ │ │ ├── WebCoreFullScreenWindow.mm │ │ │ ├── WebCoreNSFontManagerExtras.h │ │ │ ├── WebCoreNSFontManagerExtras.mm │ │ │ ├── WebCoreNSURLExtras.h │ │ │ ├── WebCoreNSURLExtras.mm │ │ │ ├── WebCoreObjCExtras.h │ │ │ ├── WebCoreObjCExtras.mm │ │ │ ├── WebCoreView.h │ │ │ ├── WebCoreView.m │ │ │ ├── WebGLBlacklist.h │ │ │ ├── WebGLBlacklist.mm │ │ │ ├── WebNSAttributedStringExtras.h │ │ │ ├── WebNSAttributedStringExtras.mm │ │ │ ├── WebPlaybackControlsManager.h │ │ │ ├── WebPlaybackControlsManager.mm │ │ │ └── WidgetMac.mm │ │ ├── mediacapabilities │ │ │ ├── AudioConfiguration.h │ │ │ ├── MediaConfiguration.h │ │ │ ├── MediaDecodingConfiguration.h │ │ │ ├── MediaDecodingType.h │ │ │ ├── MediaEncodingConfiguration.h │ │ │ ├── MediaEncodingType.h │ │ │ ├── MediaEngineConfigurationFactory.cpp │ │ │ ├── MediaEngineConfigurationFactory.h │ │ │ └── VideoConfiguration.h │ │ ├── mediarecorder │ │ │ ├── MediaRecorderPrivate.h │ │ │ ├── MediaRecorderPrivateAVFImpl.cpp │ │ │ ├── MediaRecorderPrivateAVFImpl.h │ │ │ ├── MediaRecorderPrivateMock.cpp │ │ │ ├── MediaRecorderPrivateMock.h │ │ │ └── cocoa │ │ │ │ ├── MediaRecorderPrivateWriterCocoa.h │ │ │ │ └── MediaRecorderPrivateWriterCocoa.mm │ │ ├── mediasession │ │ │ ├── MediaSessionInterruptionProvider.cpp │ │ │ ├── MediaSessionInterruptionProvider.h │ │ │ └── mac │ │ │ │ ├── MediaSessionInterruptionProviderMac.h │ │ │ │ └── MediaSessionInterruptionProviderMac.mm │ │ ├── mediastream │ │ │ ├── AudioTrackPrivateMediaStream.h │ │ │ ├── CaptureDevice.h │ │ │ ├── CaptureDeviceManager.cpp │ │ │ ├── CaptureDeviceManager.h │ │ │ ├── IceCandidate.h │ │ │ ├── MediaConstraints.cpp │ │ │ ├── MediaConstraints.h │ │ │ ├── MediaEndpointConfiguration.cpp │ │ │ ├── MediaEndpointConfiguration.h │ │ │ ├── MediaPayload.h │ │ │ ├── MediaStreamConstraintsValidationClient.h │ │ │ ├── MediaStreamPrivate.cpp │ │ │ ├── MediaStreamPrivate.h │ │ │ ├── MediaStreamRequest.h │ │ │ ├── MediaStreamTrackPrivate.cpp │ │ │ ├── MediaStreamTrackPrivate.h │ │ │ ├── PeerConnectionStates.h │ │ │ ├── PeerMediaDescription.h │ │ │ ├── RTCBundlePolicy.h │ │ │ ├── RTCDTMFSenderHandler.h │ │ │ ├── RTCDTMFSenderHandlerClient.h │ │ │ ├── RTCDataChannelHandler.h │ │ │ ├── RTCDataChannelHandlerClient.h │ │ │ ├── RTCDataChannelState.h │ │ │ ├── RTCIceCandidateDescriptor.cpp │ │ │ ├── RTCIceCandidateDescriptor.h │ │ │ ├── RTCIceConnectionState.h │ │ │ ├── RTCIceGatheringState.h │ │ │ ├── RTCIceTransportPolicy.h │ │ │ ├── RTCIceTransportState.h │ │ │ ├── RTCPMuxPolicy.h │ │ │ ├── RTCPeerConnectionHandlerClient.h │ │ │ ├── RTCPeerConnectionState.h │ │ │ ├── RTCRtpCapabilities.h │ │ │ ├── RTCRtpTransceiverDirection.h │ │ │ ├── RTCSdpType.h │ │ │ ├── RTCSessionDescriptionDescriptor.cpp │ │ │ ├── RTCSessionDescriptionDescriptor.h │ │ │ ├── RTCSessionDescriptionRequest.h │ │ │ ├── RTCSignalingState.h │ │ │ ├── RTCVoidRequest.h │ │ │ ├── RealtimeIncomingAudioSource.cpp │ │ │ ├── RealtimeIncomingAudioSource.h │ │ │ ├── RealtimeIncomingVideoSource.cpp │ │ │ ├── RealtimeIncomingVideoSource.h │ │ │ ├── RealtimeMediaSource.cpp │ │ │ ├── RealtimeMediaSource.h │ │ │ ├── RealtimeMediaSourceCapabilities.h │ │ │ ├── RealtimeMediaSourceCenter.cpp │ │ │ ├── RealtimeMediaSourceCenter.h │ │ │ ├── RealtimeMediaSourceFactory.cpp │ │ │ ├── RealtimeMediaSourceFactory.h │ │ │ ├── RealtimeMediaSourceSettings.cpp │ │ │ ├── RealtimeMediaSourceSettings.h │ │ │ ├── RealtimeMediaSourceSupportedConstraints.cpp │ │ │ ├── RealtimeMediaSourceSupportedConstraints.h │ │ │ ├── RealtimeOutgoingAudioSource.cpp │ │ │ ├── RealtimeOutgoingAudioSource.h │ │ │ ├── RealtimeOutgoingVideoSource.cpp │ │ │ ├── RealtimeOutgoingVideoSource.h │ │ │ ├── RealtimeVideoCaptureSource.cpp │ │ │ ├── RealtimeVideoCaptureSource.h │ │ │ ├── RealtimeVideoSource.cpp │ │ │ ├── RealtimeVideoSource.h │ │ │ ├── VideoPreset.h │ │ │ ├── VideoTrackPrivateMediaStream.h │ │ │ ├── WebAudioSourceProvider.h │ │ │ ├── gstreamer │ │ │ │ ├── GStreamerAudioCaptureSource.cpp │ │ │ │ ├── GStreamerAudioCaptureSource.h │ │ │ │ ├── GStreamerAudioCapturer.cpp │ │ │ │ ├── GStreamerAudioCapturer.h │ │ │ │ ├── GStreamerAudioData.h │ │ │ │ ├── GStreamerAudioStreamDescription.h │ │ │ │ ├── GStreamerCaptureDevice.h │ │ │ │ ├── GStreamerCaptureDeviceManager.cpp │ │ │ │ ├── GStreamerCaptureDeviceManager.h │ │ │ │ ├── GStreamerCapturer.cpp │ │ │ │ ├── GStreamerCapturer.h │ │ │ │ ├── GStreamerMediaStreamSource.cpp │ │ │ │ ├── GStreamerMediaStreamSource.h │ │ │ │ ├── GStreamerVideoCaptureSource.cpp │ │ │ │ ├── GStreamerVideoCaptureSource.h │ │ │ │ ├── GStreamerVideoCapturer.cpp │ │ │ │ ├── GStreamerVideoCapturer.h │ │ │ │ ├── GStreamerVideoFrameLibWebRTC.cpp │ │ │ │ ├── GStreamerVideoFrameLibWebRTC.h │ │ │ │ ├── MockGStreamerAudioCaptureSource.cpp │ │ │ │ ├── MockGStreamerAudioCaptureSource.h │ │ │ │ ├── MockGStreamerVideoCaptureSource.cpp │ │ │ │ ├── MockGStreamerVideoCaptureSource.h │ │ │ │ ├── RealtimeIncomingAudioSourceLibWebRTC.cpp │ │ │ │ ├── RealtimeIncomingAudioSourceLibWebRTC.h │ │ │ │ ├── RealtimeIncomingVideoSourceLibWebRTC.cpp │ │ │ │ ├── RealtimeIncomingVideoSourceLibWebRTC.h │ │ │ │ ├── RealtimeMediaSourceCenterLibWebRTC.cpp │ │ │ │ ├── RealtimeOutgoingAudioSourceLibWebRTC.cpp │ │ │ │ ├── RealtimeOutgoingAudioSourceLibWebRTC.h │ │ │ │ ├── RealtimeOutgoingVideoSourceLibWebRTC.cpp │ │ │ │ └── RealtimeOutgoingVideoSourceLibWebRTC.h │ │ │ ├── ios │ │ │ │ ├── AVAudioSessionCaptureDevice.h │ │ │ │ ├── AVAudioSessionCaptureDevice.mm │ │ │ │ ├── AVAudioSessionCaptureDeviceManager.h │ │ │ │ ├── AVAudioSessionCaptureDeviceManager.mm │ │ │ │ ├── CoreAudioCaptureSourceIOS.h │ │ │ │ └── CoreAudioCaptureSourceIOS.mm │ │ │ ├── libwebrtc │ │ │ │ ├── GStreamerVideoDecoderFactory.cpp │ │ │ │ ├── GStreamerVideoDecoderFactory.h │ │ │ │ ├── GStreamerVideoEncoder.cpp │ │ │ │ ├── GStreamerVideoEncoder.h │ │ │ │ ├── GStreamerVideoEncoderFactory.cpp │ │ │ │ ├── GStreamerVideoEncoderFactory.h │ │ │ │ ├── LibWebRTCAudioFormat.h │ │ │ │ ├── LibWebRTCAudioModule.cpp │ │ │ │ ├── LibWebRTCAudioModule.h │ │ │ │ ├── LibWebRTCMacros.h │ │ │ │ ├── LibWebRTCProvider.cpp │ │ │ │ ├── LibWebRTCProvider.h │ │ │ │ ├── LibWebRTCProviderCocoa.cpp │ │ │ │ ├── LibWebRTCProviderCocoa.h │ │ │ │ ├── LibWebRTCProviderGStreamer.cpp │ │ │ │ ├── LibWebRTCProviderGStreamer.h │ │ │ │ ├── VideoToolBoxDecoderFactory.cpp │ │ │ │ ├── VideoToolBoxDecoderFactory.h │ │ │ │ ├── VideoToolBoxEncoderFactory.cpp │ │ │ │ └── VideoToolBoxEncoderFactory.h │ │ │ └── mac │ │ │ │ ├── AVCaptureDeviceManager.h │ │ │ │ ├── AVCaptureDeviceManager.mm │ │ │ │ ├── AVVideoCaptureSource.h │ │ │ │ ├── AVVideoCaptureSource.mm │ │ │ │ ├── AudioTrackPrivateMediaStreamCocoa.cpp │ │ │ │ ├── AudioTrackPrivateMediaStreamCocoa.h │ │ │ │ ├── CoreAudioCaptureDevice.cpp │ │ │ │ ├── CoreAudioCaptureDevice.h │ │ │ │ ├── CoreAudioCaptureDeviceManager.cpp │ │ │ │ ├── CoreAudioCaptureDeviceManager.h │ │ │ │ ├── CoreAudioCaptureSource.cpp │ │ │ │ ├── CoreAudioCaptureSource.h │ │ │ │ ├── DisplayCaptureManagerCocoa.cpp │ │ │ │ ├── DisplayCaptureManagerCocoa.h │ │ │ │ ├── DisplayCaptureSourceCocoa.cpp │ │ │ │ ├── DisplayCaptureSourceCocoa.h │ │ │ │ ├── MockRealtimeAudioSourceMac.h │ │ │ │ ├── MockRealtimeAudioSourceMac.mm │ │ │ │ ├── MockRealtimeVideoSourceMac.h │ │ │ │ ├── MockRealtimeVideoSourceMac.mm │ │ │ │ ├── RealtimeIncomingAudioSourceCocoa.cpp │ │ │ │ ├── RealtimeIncomingAudioSourceCocoa.h │ │ │ │ ├── RealtimeIncomingVideoSourceCocoa.h │ │ │ │ ├── RealtimeIncomingVideoSourceCocoa.mm │ │ │ │ ├── RealtimeMediaSourceCenterMac.cpp │ │ │ │ ├── RealtimeMediaSourceCenterMac.mm │ │ │ │ ├── RealtimeOutgoingAudioSourceCocoa.cpp │ │ │ │ ├── RealtimeOutgoingAudioSourceCocoa.h │ │ │ │ ├── RealtimeOutgoingVideoSourceCocoa.cpp │ │ │ │ ├── RealtimeOutgoingVideoSourceCocoa.h │ │ │ │ ├── RealtimeOutgoingVideoSourceCocoa.mm │ │ │ │ ├── RealtimeVideoUtilities.h │ │ │ │ ├── ScreenDisplayCaptureSourceMac.h │ │ │ │ ├── ScreenDisplayCaptureSourceMac.mm │ │ │ │ ├── WebAudioSourceProviderAVFObjC.h │ │ │ │ ├── WebAudioSourceProviderAVFObjC.mm │ │ │ │ ├── WindowDisplayCaptureSourceMac.h │ │ │ │ └── WindowDisplayCaptureSourceMac.mm │ │ ├── mock │ │ │ ├── DeviceOrientationClientMock.cpp │ │ │ ├── DeviceOrientationClientMock.h │ │ │ ├── GeolocationClientMock.cpp │ │ │ ├── GeolocationClientMock.h │ │ │ ├── MediaEngineConfigurationFactoryMock.cpp │ │ │ ├── MediaEngineConfigurationFactoryMock.h │ │ │ ├── MediaPlaybackTargetMock.cpp │ │ │ ├── MediaPlaybackTargetMock.h │ │ │ ├── MediaPlaybackTargetPickerMock.cpp │ │ │ ├── MediaPlaybackTargetPickerMock.h │ │ │ ├── MockMediaDevice.h │ │ │ ├── MockRealtimeAudioSource.cpp │ │ │ ├── MockRealtimeAudioSource.h │ │ │ ├── MockRealtimeMediaSourceCenter.cpp │ │ │ ├── MockRealtimeMediaSourceCenter.h │ │ │ ├── MockRealtimeVideoSource.cpp │ │ │ ├── MockRealtimeVideoSource.h │ │ │ ├── PlatformSpeechSynthesizerMock.cpp │ │ │ ├── PlatformSpeechSynthesizerMock.h │ │ │ ├── RTCDataChannelHandlerMock.cpp │ │ │ ├── RTCDataChannelHandlerMock.h │ │ │ ├── RTCNotifiersMock.cpp │ │ │ ├── RTCNotifiersMock.h │ │ │ ├── ScrollAnimatorMock.cpp │ │ │ ├── ScrollAnimatorMock.h │ │ │ ├── ScrollbarThemeMock.cpp │ │ │ ├── ScrollbarThemeMock.h │ │ │ ├── TimerEventBasedMock.h │ │ │ └── mediasource │ │ │ │ ├── MockBox.cpp │ │ │ │ ├── MockBox.h │ │ │ │ ├── MockMediaPlayerMediaSource.cpp │ │ │ │ ├── MockMediaPlayerMediaSource.h │ │ │ │ ├── MockMediaSourcePrivate.cpp │ │ │ │ ├── MockMediaSourcePrivate.h │ │ │ │ ├── MockSourceBufferPrivate.cpp │ │ │ │ ├── MockSourceBufferPrivate.h │ │ │ │ └── MockTracks.h │ │ ├── network │ │ │ ├── AuthenticationChallengeBase.cpp │ │ │ ├── AuthenticationChallengeBase.h │ │ │ ├── AuthenticationClient.h │ │ │ ├── BlobData.cpp │ │ │ ├── BlobData.h │ │ │ ├── BlobDataFileReference.cpp │ │ │ ├── BlobDataFileReference.h │ │ │ ├── BlobPart.h │ │ │ ├── BlobRegistry.cpp │ │ │ ├── BlobRegistry.h │ │ │ ├── BlobRegistryImpl.cpp │ │ │ ├── BlobRegistryImpl.h │ │ │ ├── BlobResourceHandle.cpp │ │ │ ├── BlobResourceHandle.h │ │ │ ├── CacheValidation.cpp │ │ │ ├── CacheValidation.h │ │ │ ├── CertificateInfoBase.h │ │ │ ├── Cookie.cpp │ │ │ ├── CookieRequestHeaderFieldProxy.h │ │ │ ├── CookieStorage.h │ │ │ ├── Credential.h │ │ │ ├── CredentialBase.cpp │ │ │ ├── CredentialBase.h │ │ │ ├── CredentialStorage.cpp │ │ │ ├── CredentialStorage.h │ │ │ ├── DNS.cpp │ │ │ ├── DNS.h │ │ │ ├── DNSResolveQueue.cpp │ │ │ ├── DNSResolveQueue.h │ │ │ ├── DataURLDecoder.cpp │ │ │ ├── DataURLDecoder.h │ │ │ ├── FormData.cpp │ │ │ ├── FormData.h │ │ │ ├── FormDataBuilder.cpp │ │ │ ├── FormDataBuilder.h │ │ │ ├── HTTPHeaderMap.cpp │ │ │ ├── HTTPHeaderMap.h │ │ │ ├── HTTPHeaderNames.in │ │ │ ├── HTTPHeaderValues.cpp │ │ │ ├── HTTPHeaderValues.h │ │ │ ├── HTTPParsers.cpp │ │ │ ├── HTTPParsers.h │ │ │ ├── HTTPStatusCodes.h │ │ │ ├── MIMEHeader.cpp │ │ │ ├── MIMEHeader.h │ │ │ ├── NetworkLoadInformation.h │ │ │ ├── NetworkLoadMetrics.h │ │ │ ├── NetworkStateNotifier.cpp │ │ │ ├── NetworkStateNotifier.h │ │ │ ├── NetworkStorageSession.cpp │ │ │ ├── NetworkStorageSession.h │ │ │ ├── NetworkingContext.h │ │ │ ├── ParsedContentRange.cpp │ │ │ ├── ParsedContentRange.h │ │ │ ├── ParsedContentType.cpp │ │ │ ├── ParsedContentType.h │ │ │ ├── PingHandle.cpp │ │ │ ├── ProtectionSpace.h │ │ │ ├── ProtectionSpaceBase.cpp │ │ │ ├── ProtectionSpaceBase.h │ │ │ ├── ProtectionSpaceHash.h │ │ │ ├── ProxyServer.cpp │ │ │ ├── ProxyServer.h │ │ │ ├── ResourceErrorBase.cpp │ │ │ ├── ResourceErrorBase.h │ │ │ ├── ResourceHandle.cpp │ │ │ ├── ResourceHandle.h │ │ │ ├── ResourceHandleClient.cpp │ │ │ ├── ResourceHandleClient.h │ │ │ ├── ResourceHandleInternal.h │ │ │ ├── ResourceLoadPriority.h │ │ │ ├── ResourceRequestBase.cpp │ │ │ ├── ResourceRequestBase.h │ │ │ ├── ResourceResponseBase.cpp │ │ │ ├── ResourceResponseBase.h │ │ │ ├── SameSiteInfo.cpp │ │ │ ├── SameSiteInfo.h │ │ │ ├── SocketStreamError.h │ │ │ ├── SocketStreamHandle.cpp │ │ │ ├── SocketStreamHandle.h │ │ │ ├── SocketStreamHandleClient.h │ │ │ ├── SocketStreamHandleImpl.cpp │ │ │ ├── StorageSessionProvider.h │ │ │ ├── StoredCredentialsPolicy.h │ │ │ ├── SynchronousLoaderClient.cpp │ │ │ ├── SynchronousLoaderClient.h │ │ │ ├── cf │ │ │ │ ├── AuthenticationCF.cpp │ │ │ │ ├── AuthenticationCF.h │ │ │ │ ├── AuthenticationChallenge.h │ │ │ │ ├── CertificateInfo.h │ │ │ │ ├── CertificateInfoCFNet.cpp │ │ │ │ ├── CookieStorageCFNet.cpp │ │ │ │ ├── CredentialStorageCFNet.cpp │ │ │ │ ├── DNSResolveQueueCFNet.cpp │ │ │ │ ├── DNSResolveQueueCFNet.h │ │ │ │ ├── DownloadBundle.h │ │ │ │ ├── FormDataStreamCFNet.cpp │ │ │ │ ├── FormDataStreamCFNet.h │ │ │ │ ├── LoaderRunLoopCF.cpp │ │ │ │ ├── LoaderRunLoopCF.h │ │ │ │ ├── NetworkStorageSessionCFNet.cpp │ │ │ │ ├── NetworkStorageSessionCFNetWin.cpp │ │ │ │ ├── ProtectionSpaceCFNet.cpp │ │ │ │ ├── ProtectionSpaceCFNet.h │ │ │ │ ├── ProxyServerCFNet.cpp │ │ │ │ ├── ResourceError.h │ │ │ │ ├── ResourceErrorCF.cpp │ │ │ │ ├── ResourceHandleCFNet.cpp │ │ │ │ ├── ResourceHandleCFURLConnectionDelegate.cpp │ │ │ │ ├── ResourceHandleCFURLConnectionDelegate.h │ │ │ │ ├── ResourceHandleCFURLConnectionDelegateWithOperationQueue.cpp │ │ │ │ ├── ResourceHandleCFURLConnectionDelegateWithOperationQueue.h │ │ │ │ ├── ResourceRequest.h │ │ │ │ ├── ResourceRequestCFNet.cpp │ │ │ │ ├── ResourceRequestCFNet.h │ │ │ │ ├── ResourceResponse.h │ │ │ │ ├── ResourceResponseCFNet.cpp │ │ │ │ ├── SocketStreamHandleImpl.h │ │ │ │ ├── SocketStreamHandleImplCFNet.cpp │ │ │ │ └── SynchronousLoaderClientCFNet.cpp │ │ │ ├── cocoa │ │ │ │ ├── CertificateInfoCocoa.mm │ │ │ │ ├── CookieCocoa.mm │ │ │ │ ├── CookieStorageObserver.h │ │ │ │ ├── CookieStorageObserver.mm │ │ │ │ ├── CredentialCocoa.h │ │ │ │ ├── CredentialCocoa.mm │ │ │ │ ├── NetworkLoadMetrics.mm │ │ │ │ ├── NetworkStorageSessionCocoa.mm │ │ │ │ ├── ProtectionSpaceCocoa.h │ │ │ │ ├── ProtectionSpaceCocoa.mm │ │ │ │ ├── ResourceRequestCocoa.mm │ │ │ │ ├── ResourceResponseCocoa.mm │ │ │ │ ├── WebCoreNSURLSession.h │ │ │ │ └── WebCoreNSURLSession.mm │ │ │ ├── create-http-header-name-table │ │ │ ├── curl │ │ │ │ ├── AuthenticationChallenge.h │ │ │ │ ├── AuthenticationChallengeCurl.cpp │ │ │ │ ├── CertificateInfo.h │ │ │ │ ├── CertificateInfoCurl.cpp │ │ │ │ ├── CookieJarCurl.cpp │ │ │ │ ├── CookieJarCurl.h │ │ │ │ ├── CookieJarDB.cpp │ │ │ │ ├── CookieJarDB.h │ │ │ │ ├── CookieStorageCurl.cpp │ │ │ │ ├── CookieUtil.cpp │ │ │ │ ├── CookieUtil.h │ │ │ │ ├── CredentialStorageCurl.cpp │ │ │ │ ├── CurlCacheEntry.cpp │ │ │ │ ├── CurlCacheEntry.h │ │ │ │ ├── CurlCacheManager.cpp │ │ │ │ ├── CurlCacheManager.h │ │ │ │ ├── CurlContext.cpp │ │ │ │ ├── CurlContext.h │ │ │ │ ├── CurlDownload.cpp │ │ │ │ ├── CurlDownload.h │ │ │ │ ├── CurlFormDataStream.cpp │ │ │ │ ├── CurlFormDataStream.h │ │ │ │ ├── CurlMultipartHandle.cpp │ │ │ │ ├── CurlMultipartHandle.h │ │ │ │ ├── CurlMultipartHandleClient.h │ │ │ │ ├── CurlProxySettings.cpp │ │ │ │ ├── CurlProxySettings.h │ │ │ │ ├── CurlRequest.cpp │ │ │ │ ├── CurlRequest.h │ │ │ │ ├── CurlRequestClient.h │ │ │ │ ├── CurlRequestScheduler.cpp │ │ │ │ ├── CurlRequestScheduler.h │ │ │ │ ├── CurlRequestSchedulerClient.h │ │ │ │ ├── CurlResourceHandleDelegate.cpp │ │ │ │ ├── CurlResourceHandleDelegate.h │ │ │ │ ├── CurlResponse.h │ │ │ │ ├── CurlSSLHandle.cpp │ │ │ │ ├── CurlSSLHandle.h │ │ │ │ ├── CurlSSLVerifier.cpp │ │ │ │ ├── CurlSSLVerifier.h │ │ │ │ ├── DNSResolveQueueCurl.cpp │ │ │ │ ├── DNSResolveQueueCurl.h │ │ │ │ ├── DownloadBundle.h │ │ │ │ ├── NetworkStorageSessionCurl.cpp │ │ │ │ ├── ProtectionSpaceCurl.cpp │ │ │ │ ├── ProtectionSpaceCurl.h │ │ │ │ ├── ProxyServerCurl.cpp │ │ │ │ ├── PublicSuffixCurl.cpp │ │ │ │ ├── ResourceError.h │ │ │ │ ├── ResourceErrorCurl.cpp │ │ │ │ ├── ResourceHandleCurl.cpp │ │ │ │ ├── ResourceRequest.h │ │ │ │ ├── ResourceRequestCurl.cpp │ │ │ │ ├── ResourceResponse.h │ │ │ │ ├── ResourceResponseCurl.cpp │ │ │ │ ├── SocketStreamHandleImpl.h │ │ │ │ ├── SocketStreamHandleImplCurl.cpp │ │ │ │ └── SynchronousLoaderClientCurl.cpp │ │ │ ├── glib │ │ │ │ └── NetworkStateNotifierGLib.cpp │ │ │ ├── ios │ │ │ │ ├── NetworkStateNotifierIOS.mm │ │ │ │ ├── PreviewConverter.h │ │ │ │ ├── PreviewConverter.mm │ │ │ │ ├── PreviewLoaderClient.h │ │ │ │ ├── WebCoreURLResponseIOS.h │ │ │ │ └── WebCoreURLResponseIOS.mm │ │ │ ├── mac │ │ │ │ ├── AuthenticationMac.h │ │ │ │ ├── AuthenticationMac.mm │ │ │ │ ├── BlobDataFileReferenceMac.mm │ │ │ │ ├── CookieStorageMac.mm │ │ │ │ ├── CredentialStorageMac.mm │ │ │ │ ├── FormDataStreamMac.h │ │ │ │ ├── FormDataStreamMac.mm │ │ │ │ ├── NetworkStateNotifierMac.cpp │ │ │ │ ├── ResourceErrorMac.mm │ │ │ │ ├── ResourceHandleMac.mm │ │ │ │ ├── SynchronousLoaderClient.mm │ │ │ │ ├── UTIUtilities.h │ │ │ │ ├── UTIUtilities.mm │ │ │ │ ├── WebCoreResourceHandleAsOperationQueueDelegate.h │ │ │ │ ├── WebCoreResourceHandleAsOperationQueueDelegate.mm │ │ │ │ ├── WebCoreURLResponse.h │ │ │ │ └── WebCoreURLResponse.mm │ │ │ ├── playstation │ │ │ │ ├── CurlSSLHandlePlayStation.cpp │ │ │ │ └── NetworkStateNotifierPlayStation.cpp │ │ │ ├── soup │ │ │ │ ├── AuthenticationChallenge.h │ │ │ │ ├── AuthenticationChallengeSoup.cpp │ │ │ │ ├── CertificateInfo.h │ │ │ │ ├── CertificateInfoSoup.cpp │ │ │ │ ├── CookieSoup.cpp │ │ │ │ ├── CookieStorageSoup.cpp │ │ │ │ ├── CredentialStorageSoup.cpp │ │ │ │ ├── DNSResolveQueueSoup.cpp │ │ │ │ ├── DNSResolveQueueSoup.h │ │ │ │ ├── GRefPtrSoup.cpp │ │ │ │ ├── GRefPtrSoup.h │ │ │ │ ├── GUniquePtrSoup.h │ │ │ │ ├── NetworkStorageSessionSoup.cpp │ │ │ │ ├── ProxyServerSoup.cpp │ │ │ │ ├── ResourceError.h │ │ │ │ ├── ResourceErrorSoup.cpp │ │ │ │ ├── ResourceHandleSoup.cpp │ │ │ │ ├── ResourceRequest.h │ │ │ │ ├── ResourceRequestSoup.cpp │ │ │ │ ├── ResourceResponse.h │ │ │ │ ├── ResourceResponseSoup.cpp │ │ │ │ ├── SocketStreamHandleImpl.h │ │ │ │ ├── SocketStreamHandleImplSoup.cpp │ │ │ │ ├── SoupNetworkProxySettings.h │ │ │ │ ├── SoupNetworkSession.cpp │ │ │ │ ├── SoupNetworkSession.h │ │ │ │ ├── SynchronousLoaderClientSoup.cpp │ │ │ │ ├── URLSoup.cpp │ │ │ │ ├── URLSoup.h │ │ │ │ ├── WebKitSoupRequestGeneric.cpp │ │ │ │ ├── WebKitSoupRequestGeneric.h │ │ │ │ └── WebKitSoupRequestGenericClient.h │ │ │ ├── ultralight │ │ │ │ └── CurlSSLHandleUltralight.cpp │ │ │ └── win │ │ │ │ ├── CurlSSLHandleWin.cpp │ │ │ │ ├── DownloadBundleWin.cpp │ │ │ │ └── NetworkStateNotifierWin.cpp │ │ ├── playstation │ │ │ ├── EventLoopPlayStation.cpp │ │ │ ├── MIMETypeRegistryPlayStation.cpp │ │ │ ├── PlatformScreenPlayStation.cpp │ │ │ ├── ScrollbarThemePlayStation.cpp │ │ │ ├── ScrollbarThemePlayStation.h │ │ │ └── UserAgentPlayStation.cpp │ │ ├── posix │ │ │ └── SharedBufferPOSIX.cpp │ │ ├── soup │ │ │ ├── PublicSuffixSoup.cpp │ │ │ └── SharedBufferSoup.cpp │ │ ├── sql │ │ │ ├── SQLValue.h │ │ │ ├── SQLiteAuthorizer.cpp │ │ │ ├── SQLiteDatabase.cpp │ │ │ ├── SQLiteDatabase.h │ │ │ ├── SQLiteDatabaseTracker.cpp │ │ │ ├── SQLiteDatabaseTracker.h │ │ │ ├── SQLiteDatabaseTrackerClient.h │ │ │ ├── SQLiteFileSystem.cpp │ │ │ ├── SQLiteFileSystem.h │ │ │ ├── SQLiteStatement.cpp │ │ │ ├── SQLiteStatement.h │ │ │ ├── SQLiteTransaction.cpp │ │ │ └── SQLiteTransaction.h │ │ ├── text │ │ │ ├── BidiContext.cpp │ │ │ ├── BidiContext.h │ │ │ ├── BidiResolver.h │ │ │ ├── BidiRunList.h │ │ │ ├── CharacterProperties.h │ │ │ ├── DateTimeFormat.cpp │ │ │ ├── DateTimeFormat.h │ │ │ ├── DecodeEscapeSequences.h │ │ │ ├── Hyphenation.cpp │ │ │ ├── Hyphenation.h │ │ │ ├── LocaleICU.cpp │ │ │ ├── LocaleICU.h │ │ │ ├── LocaleNone.cpp │ │ │ ├── LocaleToScriptMapping.h │ │ │ ├── LocaleToScriptMappingDefault.cpp │ │ │ ├── LocaleToScriptMappingICU.cpp │ │ │ ├── PlatformLocale.cpp │ │ │ ├── PlatformLocale.h │ │ │ ├── QuotedPrintable.cpp │ │ │ ├── QuotedPrintable.h │ │ │ ├── SegmentedString.cpp │ │ │ ├── SegmentedString.h │ │ │ ├── StringWithDirection.h │ │ │ ├── SuffixTree.h │ │ │ ├── TextBoundaries.cpp │ │ │ ├── TextBoundaries.h │ │ │ ├── TextCheckerClient.h │ │ │ ├── TextChecking.h │ │ │ ├── TextCodec.cpp │ │ │ ├── TextCodec.h │ │ │ ├── TextCodecASCIIFastPath.h │ │ │ ├── TextCodecICU.cpp │ │ │ ├── TextCodecICU.h │ │ │ ├── TextCodecLatin1.cpp │ │ │ ├── TextCodecLatin1.h │ │ │ ├── TextCodecReplacement.cpp │ │ │ ├── TextCodecReplacement.h │ │ │ ├── TextCodecUTF16.cpp │ │ │ ├── TextCodecUTF16.h │ │ │ ├── TextCodecUTF8.cpp │ │ │ ├── TextCodecUTF8.h │ │ │ ├── TextCodecUserDefined.cpp │ │ │ ├── TextCodecUserDefined.h │ │ │ ├── TextEncoding.cpp │ │ │ ├── TextEncoding.h │ │ │ ├── TextEncodingDetector.h │ │ │ ├── TextEncodingDetectorICU.cpp │ │ │ ├── TextEncodingRegistry.cpp │ │ │ ├── TextEncodingRegistry.h │ │ │ ├── TextFlags.h │ │ │ ├── UnicodeBidi.h │ │ │ ├── WritingMode.h │ │ │ ├── cf │ │ │ │ └── HyphenationCF.cpp │ │ │ ├── enchant │ │ │ │ ├── TextCheckerEnchant.cpp │ │ │ │ └── TextCheckerEnchant.h │ │ │ ├── hyphen │ │ │ │ └── HyphenationLibHyphen.cpp │ │ │ ├── ios │ │ │ │ ├── LocalizedDateCache.h │ │ │ │ ├── LocalizedDateCache.mm │ │ │ │ └── TextEncodingRegistryIOS.mm │ │ │ ├── mac │ │ │ │ ├── LocaleMac.h │ │ │ │ ├── LocaleMac.mm │ │ │ │ ├── TextBoundaries.mm │ │ │ │ ├── TextCheckingMac.mm │ │ │ │ └── TextEncodingRegistryMac.mm │ │ │ └── win │ │ │ │ ├── LocaleWin.cpp │ │ │ │ ├── LocaleWin.h │ │ │ │ ├── TextCodecWin.cpp │ │ │ │ └── TextCodecWin.h │ │ ├── ultralight │ │ │ ├── AXObjectCacheUltralight.cpp │ │ │ ├── CryptoDigestUltralight.cpp │ │ │ ├── CursorUltralight.cpp │ │ │ ├── DNSResolveQueueUltralight.cpp │ │ │ ├── DragControllerUltralight.cpp │ │ │ ├── DragDataUltralight.cpp │ │ │ ├── DragImageUltralight.cpp │ │ │ ├── EditorUltralight.cpp │ │ │ ├── EventHandlerUltralight.cpp │ │ │ ├── EventLoopUltralight.cpp │ │ │ ├── FileSystemUltralight.cpp │ │ │ ├── FileURLLoader.cpp │ │ │ ├── FileURLLoader.h │ │ │ ├── GamepadProviderUltralight.cpp │ │ │ ├── GamepadProviderUltralight.h │ │ │ ├── GamepadUltralight.cpp │ │ │ ├── GamepadUltralight.h │ │ │ ├── HyphenationUltralight.cpp │ │ │ ├── ICUUtils.cpp │ │ │ ├── ICUUtils.h │ │ │ ├── IconUltralight.cpp │ │ │ ├── ImageUltralight.cpp │ │ │ ├── KeyEventUltralight.cpp │ │ │ ├── KeyedDecoderUltralight.cpp │ │ │ ├── KeyedDecoderUltralight.h │ │ │ ├── KeyedEncoderUltralight.cpp │ │ │ ├── KeyedEncoderUltralight.h │ │ │ ├── LocalizedStringsUltralight.cpp │ │ │ ├── LoggingUltralight.cpp │ │ │ ├── MIMETypeRegistryUltralight.cpp │ │ │ ├── MainThreadSharedTimerUltralight.cpp │ │ │ ├── MemoryUtils.cpp │ │ │ ├── MemoryUtils.h │ │ │ ├── NetworkStateNotifierStub.cpp │ │ │ ├── PasteboardUltralight.cpp │ │ │ ├── PlatformMouseEventUltralight.cpp │ │ │ ├── PlatformScreenUltralight.cpp │ │ │ ├── PreserveSymbolsUltralight.cpp │ │ │ ├── RenderThemeUltralight.cpp │ │ │ ├── ResourceLoaderUltralight.cpp │ │ │ ├── ResourceLoaderUltralight.h │ │ │ ├── ResourceUsageOverlayUltralight.cpp │ │ │ ├── SSLKeyGeneratorStub.cpp │ │ │ ├── SSLKeyGeneratorUltralight.cpp │ │ │ ├── SSLKeyGeneratorUltralightMac.mm │ │ │ ├── ScrollbarThemeUltralight.cpp │ │ │ ├── SharedBufferUltralight.cpp │ │ │ ├── SoundUltralight.cpp │ │ │ ├── StringUltralight.h │ │ │ ├── SynchronousLoaderClientUltralight.cpp │ │ │ ├── TextBreakIteratorInternalICUUltralight.cpp │ │ │ ├── UTFUltralight.cpp │ │ │ ├── UTFUltralight.h │ │ │ └── WidgetUltralight.cpp │ │ ├── unix │ │ │ └── LoggingUnix.cpp │ │ ├── vr │ │ │ ├── VRManager.cpp │ │ │ ├── VRManager.h │ │ │ ├── VRPlatformDisplay.cpp │ │ │ ├── VRPlatformDisplay.h │ │ │ ├── VRPlatformDisplayClient.h │ │ │ ├── VRPlatformManager.h │ │ │ └── openvr │ │ │ │ ├── VRPlatformDisplayOpenVR.cpp │ │ │ │ ├── VRPlatformDisplayOpenVR.h │ │ │ │ ├── VRPlatformManagerOpenVR.cpp │ │ │ │ └── VRPlatformManagerOpenVR.h │ │ ├── win │ │ │ ├── BString.cpp │ │ │ ├── BString.h │ │ │ ├── BitmapInfo.cpp │ │ │ ├── BitmapInfo.h │ │ │ ├── COMPtr.h │ │ │ ├── ClipboardUtilitiesWin.cpp │ │ │ ├── ClipboardUtilitiesWin.h │ │ │ ├── CursorWin.cpp │ │ │ ├── DefWndProcWindowClass.cpp │ │ │ ├── DefWndProcWindowClass.h │ │ │ ├── DelayLoadedModulesEnumerator.cpp │ │ │ ├── DelayLoadedModulesEnumerator.h │ │ │ ├── DragDataWin.cpp │ │ │ ├── DragImageCGWin.cpp │ │ │ ├── DragImageCairoWin.cpp │ │ │ ├── DragImageDirect2D.cpp │ │ │ ├── DragImageWin.cpp │ │ │ ├── EventLoopWin.cpp │ │ │ ├── GDIObjectCounter.cpp │ │ │ ├── GDIObjectCounter.h │ │ │ ├── GDIUtilities.cpp │ │ │ ├── GDIUtilities.h │ │ │ ├── HWndDC.h │ │ │ ├── ImportedFunctionsEnumerator.cpp │ │ │ ├── ImportedFunctionsEnumerator.h │ │ │ ├── ImportedModulesEnumerator.cpp │ │ │ ├── ImportedModulesEnumerator.h │ │ │ ├── ImportedModulesEnumeratorBase.h │ │ │ ├── KeyEventWin.cpp │ │ │ ├── LocalizedStringsWin.cpp │ │ │ ├── LoggingWin.cpp │ │ │ ├── MIMETypeRegistryWin.cpp │ │ │ ├── MainThreadSharedTimerWin.cpp │ │ │ ├── PEImage.cpp │ │ │ ├── PEImage.h │ │ │ ├── PasteboardWin.cpp │ │ │ ├── PlatformMouseEventWin.cpp │ │ │ ├── PlatformScreenWin.cpp │ │ │ ├── PopupMenuWin.cpp │ │ │ ├── PopupMenuWin.h │ │ │ ├── SSLKeyGeneratorWin.cpp │ │ │ ├── ScrollbarThemeWin.cpp │ │ │ ├── ScrollbarThemeWin.h │ │ │ ├── SearchPopupMenuDB.cpp │ │ │ ├── SearchPopupMenuDB.h │ │ │ ├── SearchPopupMenuWin.cpp │ │ │ ├── SearchPopupMenuWin.h │ │ │ ├── SharedBufferWin.cpp │ │ │ ├── StructuredExceptionHandlerSuppressor.cpp │ │ │ ├── StructuredExceptionHandlerSuppressor.h │ │ │ ├── SystemInfo.cpp │ │ │ ├── SystemInfo.h │ │ │ ├── TemporaryLinkStubs.cpp │ │ │ ├── UserAgentWin.cpp │ │ │ ├── WCDataObject.cpp │ │ │ ├── WCDataObject.h │ │ │ ├── WebCoreBundleWin.cpp │ │ │ ├── WebCoreBundleWin.h │ │ │ ├── WebCoreInstanceHandle.cpp │ │ │ ├── WebCoreInstanceHandle.h │ │ │ ├── WebCoreTextRenderer.cpp │ │ │ ├── WebCoreTextRenderer.h │ │ │ ├── WheelEventWin.cpp │ │ │ ├── WidgetWin.cpp │ │ │ ├── WindowMessageBroadcaster.cpp │ │ │ ├── WindowMessageBroadcaster.h │ │ │ ├── WindowMessageListener.h │ │ │ ├── WindowsTouch.h │ │ │ └── makesafeseh.asm │ │ ├── wpe │ │ │ ├── PlatformScreenWPE.cpp │ │ │ ├── RenderThemeWPE.cpp │ │ │ ├── RenderThemeWPE.h │ │ │ ├── ScrollbarThemeWPE.cpp │ │ │ ├── ScrollbarThemeWPE.h │ │ │ ├── ThemeWPE.cpp │ │ │ └── ThemeWPE.h │ │ └── xdg │ │ │ └── MIMETypeRegistryXdg.cpp │ ├── plugins │ │ ├── DOMMimeType.cpp │ │ ├── DOMMimeType.h │ │ ├── DOMMimeType.idl │ │ ├── DOMMimeTypeArray.cpp │ │ ├── DOMMimeTypeArray.h │ │ ├── DOMMimeTypeArray.idl │ │ ├── DOMPlugin.cpp │ │ ├── DOMPlugin.h │ │ ├── DOMPlugin.idl │ │ ├── DOMPluginArray.cpp │ │ ├── DOMPluginArray.h │ │ ├── DOMPluginArray.idl │ │ ├── PluginData.cpp │ │ ├── PluginData.h │ │ ├── PluginInfoProvider.cpp │ │ ├── PluginInfoProvider.h │ │ ├── PluginViewBase.h │ │ ├── npapi.h │ │ ├── npfunctions.h │ │ ├── npruntime.h │ │ └── nptypes.h │ ├── public.sym │ ├── public_linux.sym │ ├── rendering │ │ ├── AutoTableLayout.cpp │ │ ├── AutoTableLayout.h │ │ ├── BidiRun.cpp │ │ ├── BidiRun.h │ │ ├── BorderEdge.cpp │ │ ├── BorderEdge.h │ │ ├── BreakLines.cpp │ │ ├── BreakLines.h │ │ ├── CSSFilter.cpp │ │ ├── CSSFilter.h │ │ ├── ClipPathOperation.h │ │ ├── ClipRect.cpp │ │ ├── ClipRect.h │ │ ├── ColumnInfo.h │ │ ├── CounterNode.cpp │ │ ├── CounterNode.h │ │ ├── EllipsisBox.cpp │ │ ├── EllipsisBox.h │ │ ├── EventRegion.cpp │ │ ├── EventRegion.h │ │ ├── FixedTableLayout.cpp │ │ ├── FixedTableLayout.h │ │ ├── FlexibleBoxAlgorithm.cpp │ │ ├── FlexibleBoxAlgorithm.h │ │ ├── FloatingObjects.cpp │ │ ├── FloatingObjects.h │ │ ├── GapRects.h │ │ ├── GlyphDisplayListCache.h │ │ ├── Grid.cpp │ │ ├── Grid.h │ │ ├── GridBaselineAlignment.cpp │ │ ├── GridBaselineAlignment.h │ │ ├── GridLayoutFunctions.cpp │ │ ├── GridLayoutFunctions.h │ │ ├── GridTrackSizingAlgorithm.cpp │ │ ├── GridTrackSizingAlgorithm.h │ │ ├── HitTestLocation.cpp │ │ ├── HitTestLocation.h │ │ ├── HitTestRequest.h │ │ ├── HitTestResult.cpp │ │ ├── HitTestResult.h │ │ ├── HitTestingTransformState.cpp │ │ ├── HitTestingTransformState.h │ │ ├── ImageQualityController.cpp │ │ ├── ImageQualityController.h │ │ ├── InlineBox.cpp │ │ ├── InlineBox.h │ │ ├── InlineElementBox.cpp │ │ ├── InlineElementBox.h │ │ ├── InlineFlowBox.cpp │ │ ├── InlineFlowBox.h │ │ ├── InlineIterator.cpp │ │ ├── InlineIterator.h │ │ ├── InlineTextBox.cpp │ │ ├── InlineTextBox.h │ │ ├── LayerAncestorClippingStack.cpp │ │ ├── LayerAncestorClippingStack.h │ │ ├── LayerFragment.h │ │ ├── LayerOverlapMap.cpp │ │ ├── LayerOverlapMap.h │ │ ├── LayoutDisallowedScope.cpp │ │ ├── LayoutDisallowedScope.h │ │ ├── LayoutRepainter.cpp │ │ ├── LayoutRepainter.h │ │ ├── LogicalSelectionOffsetCaches.h │ │ ├── MarkedText.cpp │ │ ├── MarkedText.h │ │ ├── OrderIterator.cpp │ │ ├── OrderIterator.h │ │ ├── OverlapTestRequestClient.h │ │ ├── Pagination.h │ │ ├── PaintFrequencyTracker.h │ │ ├── PaintInfo.h │ │ ├── PaintPhase.h │ │ ├── PointerEventsHitRules.cpp │ │ ├── PointerEventsHitRules.h │ │ ├── RenderAncestorIterator.h │ │ ├── RenderAttachment.cpp │ │ ├── RenderAttachment.h │ │ ├── RenderBlock.cpp │ │ ├── RenderBlock.h │ │ ├── RenderBlockFlow.cpp │ │ ├── RenderBlockFlow.h │ │ ├── RenderBlockLineLayout.cpp │ │ ├── RenderBox.cpp │ │ ├── RenderBox.h │ │ ├── RenderBoxFragmentInfo.h │ │ ├── RenderBoxModelObject.cpp │ │ ├── RenderBoxModelObject.h │ │ ├── RenderButton.cpp │ │ ├── RenderButton.h │ │ ├── RenderChildIterator.h │ │ ├── RenderCombineText.cpp │ │ ├── RenderCombineText.h │ │ ├── RenderCounter.cpp │ │ ├── RenderCounter.h │ │ ├── RenderDeprecatedFlexibleBox.cpp │ │ ├── RenderDeprecatedFlexibleBox.h │ │ ├── RenderDescendantIterator.h │ │ ├── RenderDetailsMarker.cpp │ │ ├── RenderDetailsMarker.h │ │ ├── RenderElement.cpp │ │ ├── RenderElement.h │ │ ├── RenderEmbeddedObject.cpp │ │ ├── RenderEmbeddedObject.h │ │ ├── RenderFileUploadControl.cpp │ │ ├── RenderFileUploadControl.h │ │ ├── RenderFlexibleBox.cpp │ │ ├── RenderFlexibleBox.h │ │ ├── RenderFragmentContainer.cpp │ │ ├── RenderFragmentContainer.h │ │ ├── RenderFragmentContainerSet.cpp │ │ ├── RenderFragmentContainerSet.h │ │ ├── RenderFragmentedFlow.cpp │ │ ├── RenderFragmentedFlow.h │ │ ├── RenderFrame.cpp │ │ ├── RenderFrame.h │ │ ├── RenderFrameBase.cpp │ │ ├── RenderFrameBase.h │ │ ├── RenderFrameSet.cpp │ │ ├── RenderFrameSet.h │ │ ├── RenderFullScreen.cpp │ │ ├── RenderFullScreen.h │ │ ├── RenderGeometryMap.cpp │ │ ├── RenderGeometryMap.h │ │ ├── RenderGrid.cpp │ │ ├── RenderGrid.h │ │ ├── RenderHTMLCanvas.cpp │ │ ├── RenderHTMLCanvas.h │ │ ├── RenderIFrame.cpp │ │ ├── RenderIFrame.h │ │ ├── RenderImage.cpp │ │ ├── RenderImage.h │ │ ├── RenderImageResource.cpp │ │ ├── RenderImageResource.h │ │ ├── RenderImageResourceStyleImage.cpp │ │ ├── RenderImageResourceStyleImage.h │ │ ├── RenderInline.cpp │ │ ├── RenderInline.h │ │ ├── RenderIterator.h │ │ ├── RenderLayer.cpp │ │ ├── RenderLayer.h │ │ ├── RenderLayerBacking.cpp │ │ ├── RenderLayerBacking.h │ │ ├── RenderLayerCompositor.cpp │ │ ├── RenderLayerCompositor.h │ │ ├── RenderLayerFilters.cpp │ │ ├── RenderLayerFilters.h │ │ ├── RenderLayerModelObject.cpp │ │ ├── RenderLayerModelObject.h │ │ ├── RenderLayoutState.cpp │ │ ├── RenderLayoutState.h │ │ ├── RenderLineBoxList.cpp │ │ ├── RenderLineBoxList.h │ │ ├── RenderLineBreak.cpp │ │ ├── RenderLineBreak.h │ │ ├── RenderListBox.cpp │ │ ├── RenderListBox.h │ │ ├── RenderListItem.cpp │ │ ├── RenderListItem.h │ │ ├── RenderListMarker.cpp │ │ ├── RenderListMarker.h │ │ ├── RenderMarquee.cpp │ │ ├── RenderMarquee.h │ │ ├── RenderMedia.cpp │ │ ├── RenderMedia.h │ │ ├── RenderMediaControlElements.cpp │ │ ├── RenderMediaControlElements.h │ │ ├── RenderMediaControls.cpp │ │ ├── RenderMediaControls.h │ │ ├── RenderMenuList.cpp │ │ ├── RenderMenuList.h │ │ ├── RenderMeter.cpp │ │ ├── RenderMeter.h │ │ ├── RenderMultiColumnFlow.cpp │ │ ├── RenderMultiColumnFlow.h │ │ ├── RenderMultiColumnSet.cpp │ │ ├── RenderMultiColumnSet.h │ │ ├── RenderMultiColumnSpannerPlaceholder.cpp │ │ ├── RenderMultiColumnSpannerPlaceholder.h │ │ ├── RenderObject.cpp │ │ ├── RenderObject.h │ │ ├── RenderObjectEnums.h │ │ ├── RenderOverflow.h │ │ ├── RenderProgress.cpp │ │ ├── RenderProgress.h │ │ ├── RenderPtr.h │ │ ├── RenderQuote.cpp │ │ ├── RenderQuote.h │ │ ├── RenderReplaced.cpp │ │ ├── RenderReplaced.h │ │ ├── RenderReplica.cpp │ │ ├── RenderReplica.h │ │ ├── RenderRuby.cpp │ │ ├── RenderRuby.h │ │ ├── RenderRubyBase.cpp │ │ ├── RenderRubyBase.h │ │ ├── RenderRubyRun.cpp │ │ ├── RenderRubyRun.h │ │ ├── RenderRubyText.cpp │ │ ├── RenderRubyText.h │ │ ├── RenderScrollbar.cpp │ │ ├── RenderScrollbar.h │ │ ├── RenderScrollbarPart.cpp │ │ ├── RenderScrollbarPart.h │ │ ├── RenderScrollbarTheme.cpp │ │ ├── RenderScrollbarTheme.h │ │ ├── RenderSearchField.cpp │ │ ├── RenderSearchField.h │ │ ├── RenderSelectionInfo.cpp │ │ ├── RenderSelectionInfo.h │ │ ├── RenderSlider.cpp │ │ ├── RenderSlider.h │ │ ├── RenderSnapshottedPlugIn.cpp │ │ ├── RenderSnapshottedPlugIn.h │ │ ├── RenderTable.cpp │ │ ├── RenderTable.h │ │ ├── RenderTableCaption.cpp │ │ ├── RenderTableCaption.h │ │ ├── RenderTableCell.cpp │ │ ├── RenderTableCell.h │ │ ├── RenderTableCol.cpp │ │ ├── RenderTableCol.h │ │ ├── RenderTableRow.cpp │ │ ├── RenderTableRow.h │ │ ├── RenderTableSection.cpp │ │ ├── RenderTableSection.h │ │ ├── RenderText.cpp │ │ ├── RenderText.h │ │ ├── RenderTextControl.cpp │ │ ├── RenderTextControl.h │ │ ├── RenderTextControlMultiLine.cpp │ │ ├── RenderTextControlMultiLine.h │ │ ├── RenderTextControlSingleLine.cpp │ │ ├── RenderTextControlSingleLine.h │ │ ├── RenderTextFragment.cpp │ │ ├── RenderTextFragment.h │ │ ├── RenderTextLineBoxes.cpp │ │ ├── RenderTextLineBoxes.h │ │ ├── RenderTheme.cpp │ │ ├── RenderTheme.h │ │ ├── RenderThemeCocoa.h │ │ ├── RenderThemeCocoa.mm │ │ ├── RenderThemeGtk.cpp │ │ ├── RenderThemeGtk.h │ │ ├── RenderThemeIOS.h │ │ ├── RenderThemeIOS.mm │ │ ├── RenderThemeMac.h │ │ ├── RenderThemeMac.mm │ │ ├── RenderThemePlayStation.cpp │ │ ├── RenderThemePlayStation.h │ │ ├── RenderThemeWin.cpp │ │ ├── RenderThemeWin.h │ │ ├── RenderTreeAsText.cpp │ │ ├── RenderTreeAsText.h │ │ ├── RenderVTTCue.cpp │ │ ├── RenderVTTCue.h │ │ ├── RenderVideo.cpp │ │ ├── RenderVideo.h │ │ ├── RenderView.cpp │ │ ├── RenderView.h │ │ ├── RenderWidget.cpp │ │ ├── RenderWidget.h │ │ ├── RootInlineBox.cpp │ │ ├── RootInlineBox.h │ │ ├── ScrollAlignment.cpp │ │ ├── ScrollAlignment.h │ │ ├── SelectionRangeData.cpp │ │ ├── SelectionRangeData.h │ │ ├── SimpleLineLayout.cpp │ │ ├── SimpleLineLayout.h │ │ ├── SimpleLineLayoutCoverage.cpp │ │ ├── SimpleLineLayoutCoverage.h │ │ ├── SimpleLineLayoutFlowContents.cpp │ │ ├── SimpleLineLayoutFlowContents.h │ │ ├── SimpleLineLayoutFunctions.cpp │ │ ├── SimpleLineLayoutFunctions.h │ │ ├── SimpleLineLayoutPagination.cpp │ │ ├── SimpleLineLayoutPagination.h │ │ ├── SimpleLineLayoutResolver.cpp │ │ ├── SimpleLineLayoutResolver.h │ │ ├── SimpleLineLayoutTextFragmentIterator.cpp │ │ ├── SimpleLineLayoutTextFragmentIterator.h │ │ ├── TableLayout.h │ │ ├── TextAutoSizing.cpp │ │ ├── TextAutoSizing.h │ │ ├── TextDecorationPainter.cpp │ │ ├── TextDecorationPainter.h │ │ ├── TextPaintStyle.cpp │ │ ├── TextPaintStyle.h │ │ ├── TextPainter.cpp │ │ ├── TextPainter.h │ │ ├── TrailingFloatsRootInlineBox.cpp │ │ ├── TrailingFloatsRootInlineBox.h │ │ ├── VerticalPositionCache.h │ │ ├── line │ │ │ ├── BreakingContext.h │ │ │ ├── LineBreaker.cpp │ │ │ ├── LineBreaker.h │ │ │ ├── LineInfo.cpp │ │ │ ├── LineInfo.h │ │ │ ├── LineInlineHeaders.h │ │ │ ├── LineLayoutState.h │ │ │ ├── LineWidth.cpp │ │ │ ├── LineWidth.h │ │ │ ├── TrailingObjects.cpp │ │ │ └── TrailingObjects.h │ │ ├── mathml │ │ │ ├── MathMLStyle.cpp │ │ │ ├── MathMLStyle.h │ │ │ ├── MathOperator.cpp │ │ │ ├── MathOperator.h │ │ │ ├── RenderMathMLBlock.cpp │ │ │ ├── RenderMathMLBlock.h │ │ │ ├── RenderMathMLFenced.cpp │ │ │ ├── RenderMathMLFenced.h │ │ │ ├── RenderMathMLFencedOperator.cpp │ │ │ ├── RenderMathMLFencedOperator.h │ │ │ ├── RenderMathMLFraction.cpp │ │ │ ├── RenderMathMLFraction.h │ │ │ ├── RenderMathMLMath.cpp │ │ │ ├── RenderMathMLMath.h │ │ │ ├── RenderMathMLMenclose.cpp │ │ │ ├── RenderMathMLMenclose.h │ │ │ ├── RenderMathMLOperator.cpp │ │ │ ├── RenderMathMLOperator.h │ │ │ ├── RenderMathMLPadded.cpp │ │ │ ├── RenderMathMLPadded.h │ │ │ ├── RenderMathMLRoot.cpp │ │ │ ├── RenderMathMLRoot.h │ │ │ ├── RenderMathMLRow.cpp │ │ │ ├── RenderMathMLRow.h │ │ │ ├── RenderMathMLScripts.cpp │ │ │ ├── RenderMathMLScripts.h │ │ │ ├── RenderMathMLSpace.cpp │ │ │ ├── RenderMathMLSpace.h │ │ │ ├── RenderMathMLToken.cpp │ │ │ ├── RenderMathMLToken.h │ │ │ ├── RenderMathMLUnderOver.cpp │ │ │ └── RenderMathMLUnderOver.h │ │ ├── shapes │ │ │ ├── BoxShape.cpp │ │ │ ├── BoxShape.h │ │ │ ├── PolygonShape.cpp │ │ │ ├── PolygonShape.h │ │ │ ├── RasterShape.cpp │ │ │ ├── RasterShape.h │ │ │ ├── RectangleShape.cpp │ │ │ ├── RectangleShape.h │ │ │ ├── Shape.cpp │ │ │ ├── Shape.h │ │ │ ├── ShapeInterval.h │ │ │ ├── ShapeOutsideInfo.cpp │ │ │ └── ShapeOutsideInfo.h │ │ ├── style │ │ │ ├── BasicShapes.cpp │ │ │ ├── BasicShapes.h │ │ │ ├── BorderData.h │ │ │ ├── BorderValue.h │ │ │ ├── CollapsedBorderValue.h │ │ │ ├── ContentData.cpp │ │ │ ├── ContentData.h │ │ │ ├── CounterContent.h │ │ │ ├── CounterDirectives.h │ │ │ ├── CursorData.h │ │ │ ├── CursorList.h │ │ │ ├── DataRef.h │ │ │ ├── FillLayer.cpp │ │ │ ├── FillLayer.h │ │ │ ├── GapLength.cpp │ │ │ ├── GapLength.h │ │ │ ├── GridArea.h │ │ │ ├── GridLength.h │ │ │ ├── GridPosition.cpp │ │ │ ├── GridPosition.h │ │ │ ├── GridPositionsResolver.cpp │ │ │ ├── GridPositionsResolver.h │ │ │ ├── GridTrackSize.h │ │ │ ├── KeyframeList.cpp │ │ │ ├── KeyframeList.h │ │ │ ├── LineClampValue.h │ │ │ ├── NinePieceImage.cpp │ │ │ ├── NinePieceImage.h │ │ │ ├── OutlineValue.h │ │ │ ├── QuotesData.cpp │ │ │ ├── QuotesData.h │ │ │ ├── RenderStyle.cpp │ │ │ ├── RenderStyle.h │ │ │ ├── RenderStyleConstants.cpp │ │ │ ├── RenderStyleConstants.h │ │ │ ├── SVGRenderStyle.cpp │ │ │ ├── SVGRenderStyle.h │ │ │ ├── SVGRenderStyleDefs.cpp │ │ │ ├── SVGRenderStyleDefs.h │ │ │ ├── ShadowData.cpp │ │ │ ├── ShadowData.h │ │ │ ├── ShapeValue.cpp │ │ │ ├── ShapeValue.h │ │ │ ├── StyleBackgroundData.cpp │ │ │ ├── StyleBackgroundData.h │ │ │ ├── StyleBoxData.cpp │ │ │ ├── StyleBoxData.h │ │ │ ├── StyleCachedImage.cpp │ │ │ ├── StyleCachedImage.h │ │ │ ├── StyleColorScheme.h │ │ │ ├── StyleContentAlignmentData.h │ │ │ ├── StyleCustomPropertyData.h │ │ │ ├── StyleDeprecatedFlexibleBoxData.cpp │ │ │ ├── StyleDeprecatedFlexibleBoxData.h │ │ │ ├── StyleFilterData.cpp │ │ │ ├── StyleFilterData.h │ │ │ ├── StyleFlexibleBoxData.cpp │ │ │ ├── StyleFlexibleBoxData.h │ │ │ ├── StyleGeneratedImage.cpp │ │ │ ├── StyleGeneratedImage.h │ │ │ ├── StyleGridData.cpp │ │ │ ├── StyleGridData.h │ │ │ ├── StyleGridItemData.cpp │ │ │ ├── StyleGridItemData.h │ │ │ ├── StyleImage.h │ │ │ ├── StyleInheritedData.cpp │ │ │ ├── StyleInheritedData.h │ │ │ ├── StyleMarqueeData.cpp │ │ │ ├── StyleMarqueeData.h │ │ │ ├── StyleMultiColData.cpp │ │ │ ├── StyleMultiColData.h │ │ │ ├── StyleRareInheritedData.cpp │ │ │ ├── StyleRareInheritedData.h │ │ │ ├── StyleRareNonInheritedData.cpp │ │ │ ├── StyleRareNonInheritedData.h │ │ │ ├── StyleReflection.h │ │ │ ├── StyleScrollSnapPoints.cpp │ │ │ ├── StyleScrollSnapPoints.h │ │ │ ├── StyleSelfAlignmentData.h │ │ │ ├── StyleSurroundData.cpp │ │ │ ├── StyleSurroundData.h │ │ │ ├── StyleTransformData.cpp │ │ │ ├── StyleTransformData.h │ │ │ ├── StyleVisualData.cpp │ │ │ ├── StyleVisualData.h │ │ │ ├── TextDecorationThickness.h │ │ │ ├── TextSizeAdjustment.cpp │ │ │ ├── TextSizeAdjustment.h │ │ │ ├── TextUnderlineOffset.h │ │ │ ├── WillChangeData.cpp │ │ │ └── WillChangeData.h │ │ ├── svg │ │ │ ├── RenderSVGBlock.cpp │ │ │ ├── RenderSVGBlock.h │ │ │ ├── RenderSVGContainer.cpp │ │ │ ├── RenderSVGContainer.h │ │ │ ├── RenderSVGEllipse.cpp │ │ │ ├── RenderSVGEllipse.h │ │ │ ├── RenderSVGForeignObject.cpp │ │ │ ├── RenderSVGForeignObject.h │ │ │ ├── RenderSVGGradientStop.cpp │ │ │ ├── RenderSVGGradientStop.h │ │ │ ├── RenderSVGHiddenContainer.cpp │ │ │ ├── RenderSVGHiddenContainer.h │ │ │ ├── RenderSVGImage.cpp │ │ │ ├── RenderSVGImage.h │ │ │ ├── RenderSVGInline.cpp │ │ │ ├── RenderSVGInline.h │ │ │ ├── RenderSVGInlineText.cpp │ │ │ ├── RenderSVGInlineText.h │ │ │ ├── RenderSVGModelObject.cpp │ │ │ ├── RenderSVGModelObject.h │ │ │ ├── RenderSVGPath.cpp │ │ │ ├── RenderSVGPath.h │ │ │ ├── RenderSVGRect.cpp │ │ │ ├── RenderSVGRect.h │ │ │ ├── RenderSVGResource.cpp │ │ │ ├── RenderSVGResource.h │ │ │ ├── RenderSVGResourceClipper.cpp │ │ │ ├── RenderSVGResourceClipper.h │ │ │ ├── RenderSVGResourceContainer.cpp │ │ │ ├── RenderSVGResourceContainer.h │ │ │ ├── RenderSVGResourceFilter.cpp │ │ │ ├── RenderSVGResourceFilter.h │ │ │ ├── RenderSVGResourceFilterPrimitive.cpp │ │ │ ├── RenderSVGResourceFilterPrimitive.h │ │ │ ├── RenderSVGResourceGradient.cpp │ │ │ ├── RenderSVGResourceGradient.h │ │ │ ├── RenderSVGResourceLinearGradient.cpp │ │ │ ├── RenderSVGResourceLinearGradient.h │ │ │ ├── RenderSVGResourceMarker.cpp │ │ │ ├── RenderSVGResourceMarker.h │ │ │ ├── RenderSVGResourceMasker.cpp │ │ │ ├── RenderSVGResourceMasker.h │ │ │ ├── RenderSVGResourcePattern.cpp │ │ │ ├── RenderSVGResourcePattern.h │ │ │ ├── RenderSVGResourceRadialGradient.cpp │ │ │ ├── RenderSVGResourceRadialGradient.h │ │ │ ├── RenderSVGResourceSolidColor.cpp │ │ │ ├── RenderSVGResourceSolidColor.h │ │ │ ├── RenderSVGRoot.cpp │ │ │ ├── RenderSVGRoot.h │ │ │ ├── RenderSVGShape.cpp │ │ │ ├── RenderSVGShape.h │ │ │ ├── RenderSVGTSpan.cpp │ │ │ ├── RenderSVGTSpan.h │ │ │ ├── RenderSVGText.cpp │ │ │ ├── RenderSVGText.h │ │ │ ├── RenderSVGTextPath.cpp │ │ │ ├── RenderSVGTextPath.h │ │ │ ├── RenderSVGTransformableContainer.cpp │ │ │ ├── RenderSVGTransformableContainer.h │ │ │ ├── RenderSVGViewportContainer.cpp │ │ │ ├── RenderSVGViewportContainer.h │ │ │ ├── SVGInlineFlowBox.cpp │ │ │ ├── SVGInlineFlowBox.h │ │ │ ├── SVGInlineTextBox.cpp │ │ │ ├── SVGInlineTextBox.h │ │ │ ├── SVGMarkerData.h │ │ │ ├── SVGPathData.cpp │ │ │ ├── SVGPathData.h │ │ │ ├── SVGRenderSupport.cpp │ │ │ ├── SVGRenderSupport.h │ │ │ ├── SVGRenderTreeAsText.cpp │ │ │ ├── SVGRenderTreeAsText.h │ │ │ ├── SVGRenderingContext.cpp │ │ │ ├── SVGRenderingContext.h │ │ │ ├── SVGResources.cpp │ │ │ ├── SVGResources.h │ │ │ ├── SVGResourcesCache.cpp │ │ │ ├── SVGResourcesCache.h │ │ │ ├── SVGResourcesCycleSolver.cpp │ │ │ ├── SVGResourcesCycleSolver.h │ │ │ ├── SVGRootInlineBox.cpp │ │ │ ├── SVGRootInlineBox.h │ │ │ ├── SVGSubpathData.h │ │ │ ├── SVGTextChunk.cpp │ │ │ ├── SVGTextChunk.h │ │ │ ├── SVGTextChunkBuilder.cpp │ │ │ ├── SVGTextChunkBuilder.h │ │ │ ├── SVGTextFragment.h │ │ │ ├── SVGTextLayoutAttributes.cpp │ │ │ ├── SVGTextLayoutAttributes.h │ │ │ ├── SVGTextLayoutAttributesBuilder.cpp │ │ │ ├── SVGTextLayoutAttributesBuilder.h │ │ │ ├── SVGTextLayoutEngine.cpp │ │ │ ├── SVGTextLayoutEngine.h │ │ │ ├── SVGTextLayoutEngineBaseline.cpp │ │ │ ├── SVGTextLayoutEngineBaseline.h │ │ │ ├── SVGTextLayoutEngineSpacing.cpp │ │ │ ├── SVGTextLayoutEngineSpacing.h │ │ │ ├── SVGTextMetrics.cpp │ │ │ ├── SVGTextMetrics.h │ │ │ ├── SVGTextMetricsBuilder.cpp │ │ │ ├── SVGTextMetricsBuilder.h │ │ │ ├── SVGTextQuery.cpp │ │ │ └── SVGTextQuery.h │ │ └── updating │ │ │ ├── RenderTreeBuilder.cpp │ │ │ ├── RenderTreeBuilder.h │ │ │ ├── RenderTreeBuilderBlock.cpp │ │ │ ├── RenderTreeBuilderBlock.h │ │ │ ├── RenderTreeBuilderBlockFlow.cpp │ │ │ ├── RenderTreeBuilderBlockFlow.h │ │ │ ├── RenderTreeBuilderContinuation.cpp │ │ │ ├── RenderTreeBuilderContinuation.h │ │ │ ├── RenderTreeBuilderFirstLetter.cpp │ │ │ ├── RenderTreeBuilderFirstLetter.h │ │ │ ├── RenderTreeBuilderFormControls.cpp │ │ │ ├── RenderTreeBuilderFormControls.h │ │ │ ├── RenderTreeBuilderFullScreen.cpp │ │ │ ├── RenderTreeBuilderFullScreen.h │ │ │ ├── RenderTreeBuilderInline.cpp │ │ │ ├── RenderTreeBuilderInline.h │ │ │ ├── RenderTreeBuilderList.cpp │ │ │ ├── RenderTreeBuilderList.h │ │ │ ├── RenderTreeBuilderMathML.cpp │ │ │ ├── RenderTreeBuilderMathML.h │ │ │ ├── RenderTreeBuilderMultiColumn.cpp │ │ │ ├── RenderTreeBuilderMultiColumn.h │ │ │ ├── RenderTreeBuilderRuby.cpp │ │ │ ├── RenderTreeBuilderRuby.h │ │ │ ├── RenderTreeBuilderSVG.cpp │ │ │ ├── RenderTreeBuilderSVG.h │ │ │ ├── RenderTreeBuilderTable.cpp │ │ │ ├── RenderTreeBuilderTable.h │ │ │ ├── RenderTreePosition.cpp │ │ │ ├── RenderTreePosition.h │ │ │ ├── RenderTreeUpdater.cpp │ │ │ ├── RenderTreeUpdater.h │ │ │ ├── RenderTreeUpdaterGeneratedContent.cpp │ │ │ └── RenderTreeUpdaterGeneratedContent.h │ ├── replay │ │ ├── UserInputBridge.cpp │ │ └── UserInputBridge.h │ ├── storage │ │ ├── Storage.cpp │ │ ├── Storage.h │ │ ├── Storage.idl │ │ ├── StorageArea.h │ │ ├── StorageEvent.cpp │ │ ├── StorageEvent.h │ │ ├── StorageEvent.idl │ │ ├── StorageEventDispatcher.cpp │ │ ├── StorageEventDispatcher.h │ │ ├── StorageMap.cpp │ │ ├── StorageMap.h │ │ ├── StorageNamespace.h │ │ ├── StorageNamespaceProvider.cpp │ │ ├── StorageNamespaceProvider.h │ │ ├── StorageQuotaManager.cpp │ │ ├── StorageQuotaManager.h │ │ ├── StorageQuotaUser.h │ │ └── StorageType.h │ ├── style │ │ ├── AttributeChangeInvalidation.cpp │ │ ├── AttributeChangeInvalidation.h │ │ ├── ClassChangeInvalidation.cpp │ │ ├── ClassChangeInvalidation.h │ │ ├── IdChangeInvalidation.cpp │ │ ├── IdChangeInvalidation.h │ │ ├── InlineTextBoxStyle.cpp │ │ ├── InlineTextBoxStyle.h │ │ ├── StyleChange.cpp │ │ ├── StyleChange.h │ │ ├── StyleFontSizeFunctions.cpp │ │ ├── StyleFontSizeFunctions.h │ │ ├── StyleInvalidationFunctions.h │ │ ├── StyleInvalidator.cpp │ │ ├── StyleInvalidator.h │ │ ├── StylePendingResources.cpp │ │ ├── StylePendingResources.h │ │ ├── StyleRelations.cpp │ │ ├── StyleRelations.h │ │ ├── StyleResolveForDocument.cpp │ │ ├── StyleResolveForDocument.h │ │ ├── StyleScope.cpp │ │ ├── StyleScope.h │ │ ├── StyleSharingResolver.cpp │ │ ├── StyleSharingResolver.h │ │ ├── StyleTreeResolver.cpp │ │ ├── StyleTreeResolver.h │ │ ├── StyleUpdate.cpp │ │ ├── StyleUpdate.h │ │ └── StyleValidity.h │ ├── svg │ │ ├── GradientAttributes.h │ │ ├── LinearGradientAttributes.h │ │ ├── PatternAttributes.h │ │ ├── RadialGradientAttributes.h │ │ ├── SVGAElement.cpp │ │ ├── SVGAElement.h │ │ ├── SVGAElement.idl │ │ ├── SVGAltGlyphDefElement.cpp │ │ ├── SVGAltGlyphDefElement.h │ │ ├── SVGAltGlyphDefElement.idl │ │ ├── SVGAltGlyphElement.cpp │ │ ├── SVGAltGlyphElement.h │ │ ├── SVGAltGlyphElement.idl │ │ ├── SVGAltGlyphItemElement.cpp │ │ ├── SVGAltGlyphItemElement.h │ │ ├── SVGAltGlyphItemElement.idl │ │ ├── SVGAngle.h │ │ ├── SVGAngle.idl │ │ ├── SVGAngleValue.cpp │ │ ├── SVGAngleValue.h │ │ ├── SVGAnimateColorElement.cpp │ │ ├── SVGAnimateColorElement.h │ │ ├── SVGAnimateColorElement.idl │ │ ├── SVGAnimateElement.cpp │ │ ├── SVGAnimateElement.h │ │ ├── SVGAnimateElement.idl │ │ ├── SVGAnimateElementBase.cpp │ │ ├── SVGAnimateElementBase.h │ │ ├── SVGAnimateMotionElement.cpp │ │ ├── SVGAnimateMotionElement.h │ │ ├── SVGAnimateMotionElement.idl │ │ ├── SVGAnimateTransformElement.cpp │ │ ├── SVGAnimateTransformElement.h │ │ ├── SVGAnimateTransformElement.idl │ │ ├── SVGAnimatedAngle.idl │ │ ├── SVGAnimatedBoolean.cpp │ │ ├── SVGAnimatedBoolean.h │ │ ├── SVGAnimatedBoolean.idl │ │ ├── SVGAnimatedEnumeration.idl │ │ ├── SVGAnimatedInteger.idl │ │ ├── SVGAnimatedLength.idl │ │ ├── SVGAnimatedLengthList.idl │ │ ├── SVGAnimatedNumber.idl │ │ ├── SVGAnimatedNumberList.idl │ │ ├── SVGAnimatedPreserveAspectRatio.idl │ │ ├── SVGAnimatedRect.idl │ │ ├── SVGAnimatedString.idl │ │ ├── SVGAnimatedTransformList.idl │ │ ├── SVGAnimationElement.cpp │ │ ├── SVGAnimationElement.h │ │ ├── SVGAnimationElement.idl │ │ ├── SVGCircleElement.cpp │ │ ├── SVGCircleElement.h │ │ ├── SVGCircleElement.idl │ │ ├── SVGClipPathElement.cpp │ │ ├── SVGClipPathElement.h │ │ ├── SVGClipPathElement.idl │ │ ├── SVGComponentTransferFunctionElement.cpp │ │ ├── SVGComponentTransferFunctionElement.h │ │ ├── SVGComponentTransferFunctionElement.idl │ │ ├── SVGCursorElement.cpp │ │ ├── SVGCursorElement.h │ │ ├── SVGCursorElement.idl │ │ ├── SVGDefsElement.cpp │ │ ├── SVGDefsElement.h │ │ ├── SVGDefsElement.idl │ │ ├── SVGDescElement.cpp │ │ ├── SVGDescElement.h │ │ ├── SVGDescElement.idl │ │ ├── SVGDocument.cpp │ │ ├── SVGDocument.h │ │ ├── SVGDocument.idl │ │ ├── SVGDocumentExtensions.cpp │ │ ├── SVGDocumentExtensions.h │ │ ├── SVGElement.cpp │ │ ├── SVGElement.h │ │ ├── SVGElement.idl │ │ ├── SVGElementRareData.h │ │ ├── SVGEllipseElement.cpp │ │ ├── SVGEllipseElement.h │ │ ├── SVGEllipseElement.idl │ │ ├── SVGExternalResourcesRequired.cpp │ │ ├── SVGExternalResourcesRequired.h │ │ ├── SVGExternalResourcesRequired.idl │ │ ├── SVGFEBlendElement.cpp │ │ ├── SVGFEBlendElement.h │ │ ├── SVGFEBlendElement.idl │ │ ├── SVGFEColorMatrixElement.cpp │ │ ├── SVGFEColorMatrixElement.h │ │ ├── SVGFEColorMatrixElement.idl │ │ ├── SVGFEComponentTransferElement.cpp │ │ ├── SVGFEComponentTransferElement.h │ │ ├── SVGFEComponentTransferElement.idl │ │ ├── SVGFECompositeElement.cpp │ │ ├── SVGFECompositeElement.h │ │ ├── SVGFECompositeElement.idl │ │ ├── SVGFEConvolveMatrixElement.cpp │ │ ├── SVGFEConvolveMatrixElement.h │ │ ├── SVGFEConvolveMatrixElement.idl │ │ ├── SVGFEDiffuseLightingElement.cpp │ │ ├── SVGFEDiffuseLightingElement.h │ │ ├── SVGFEDiffuseLightingElement.idl │ │ ├── SVGFEDisplacementMapElement.cpp │ │ ├── SVGFEDisplacementMapElement.h │ │ ├── SVGFEDisplacementMapElement.idl │ │ ├── SVGFEDistantLightElement.cpp │ │ ├── SVGFEDistantLightElement.h │ │ ├── SVGFEDistantLightElement.idl │ │ ├── SVGFEDropShadowElement.cpp │ │ ├── SVGFEDropShadowElement.h │ │ ├── SVGFEDropShadowElement.idl │ │ ├── SVGFEFloodElement.cpp │ │ ├── SVGFEFloodElement.h │ │ ├── SVGFEFloodElement.idl │ │ ├── SVGFEFuncAElement.cpp │ │ ├── SVGFEFuncAElement.h │ │ ├── SVGFEFuncAElement.idl │ │ ├── SVGFEFuncBElement.cpp │ │ ├── SVGFEFuncBElement.h │ │ ├── SVGFEFuncBElement.idl │ │ ├── SVGFEFuncGElement.cpp │ │ ├── SVGFEFuncGElement.h │ │ ├── SVGFEFuncGElement.idl │ │ ├── SVGFEFuncRElement.cpp │ │ ├── SVGFEFuncRElement.h │ │ ├── SVGFEFuncRElement.idl │ │ ├── SVGFEGaussianBlurElement.cpp │ │ ├── SVGFEGaussianBlurElement.h │ │ ├── SVGFEGaussianBlurElement.idl │ │ ├── SVGFEImageElement.cpp │ │ ├── SVGFEImageElement.h │ │ ├── SVGFEImageElement.idl │ │ ├── SVGFELightElement.cpp │ │ ├── SVGFELightElement.h │ │ ├── SVGFEMergeElement.cpp │ │ ├── SVGFEMergeElement.h │ │ ├── SVGFEMergeElement.idl │ │ ├── SVGFEMergeNodeElement.cpp │ │ ├── SVGFEMergeNodeElement.h │ │ ├── SVGFEMergeNodeElement.idl │ │ ├── SVGFEMorphologyElement.cpp │ │ ├── SVGFEMorphologyElement.h │ │ ├── SVGFEMorphologyElement.idl │ │ ├── SVGFEOffsetElement.cpp │ │ ├── SVGFEOffsetElement.h │ │ ├── SVGFEOffsetElement.idl │ │ ├── SVGFEPointLightElement.cpp │ │ ├── SVGFEPointLightElement.h │ │ ├── SVGFEPointLightElement.idl │ │ ├── SVGFESpecularLightingElement.cpp │ │ ├── SVGFESpecularLightingElement.h │ │ ├── SVGFESpecularLightingElement.idl │ │ ├── SVGFESpotLightElement.cpp │ │ ├── SVGFESpotLightElement.h │ │ ├── SVGFESpotLightElement.idl │ │ ├── SVGFETileElement.cpp │ │ ├── SVGFETileElement.h │ │ ├── SVGFETileElement.idl │ │ ├── SVGFETurbulenceElement.cpp │ │ ├── SVGFETurbulenceElement.h │ │ ├── SVGFETurbulenceElement.idl │ │ ├── SVGFilterElement.cpp │ │ ├── SVGFilterElement.h │ │ ├── SVGFilterElement.idl │ │ ├── SVGFilterPrimitiveStandardAttributes.cpp │ │ ├── SVGFilterPrimitiveStandardAttributes.h │ │ ├── SVGFilterPrimitiveStandardAttributes.idl │ │ ├── SVGFitToViewBox.cpp │ │ ├── SVGFitToViewBox.h │ │ ├── SVGFitToViewBox.idl │ │ ├── SVGFontElement.cpp │ │ ├── SVGFontElement.h │ │ ├── SVGFontElement.idl │ │ ├── SVGFontFaceElement.cpp │ │ ├── SVGFontFaceElement.h │ │ ├── SVGFontFaceElement.idl │ │ ├── SVGFontFaceFormatElement.cpp │ │ ├── SVGFontFaceFormatElement.h │ │ ├── SVGFontFaceFormatElement.idl │ │ ├── SVGFontFaceNameElement.cpp │ │ ├── SVGFontFaceNameElement.h │ │ ├── SVGFontFaceNameElement.idl │ │ ├── SVGFontFaceSrcElement.cpp │ │ ├── SVGFontFaceSrcElement.h │ │ ├── SVGFontFaceSrcElement.idl │ │ ├── SVGFontFaceUriElement.cpp │ │ ├── SVGFontFaceUriElement.h │ │ ├── SVGFontFaceUriElement.idl │ │ ├── SVGForeignObjectElement.cpp │ │ ├── SVGForeignObjectElement.h │ │ ├── SVGForeignObjectElement.idl │ │ ├── SVGGElement.cpp │ │ ├── SVGGElement.h │ │ ├── SVGGElement.idl │ │ ├── SVGGeometryElement.cpp │ │ ├── SVGGeometryElement.h │ │ ├── SVGGeometryElement.idl │ │ ├── SVGGlyphElement.cpp │ │ ├── SVGGlyphElement.h │ │ ├── SVGGlyphElement.idl │ │ ├── SVGGlyphRefElement.cpp │ │ ├── SVGGlyphRefElement.h │ │ ├── SVGGlyphRefElement.idl │ │ ├── SVGGradientElement.cpp │ │ ├── SVGGradientElement.h │ │ ├── SVGGradientElement.idl │ │ ├── SVGGraphicsElement.cpp │ │ ├── SVGGraphicsElement.h │ │ ├── SVGGraphicsElement.idl │ │ ├── SVGHKernElement.cpp │ │ ├── SVGHKernElement.h │ │ ├── SVGHKernElement.idl │ │ ├── SVGImageElement.cpp │ │ ├── SVGImageElement.h │ │ ├── SVGImageElement.idl │ │ ├── SVGImageLoader.cpp │ │ ├── SVGImageLoader.h │ │ ├── SVGLangSpace.cpp │ │ ├── SVGLangSpace.h │ │ ├── SVGLength.h │ │ ├── SVGLength.idl │ │ ├── SVGLengthContext.cpp │ │ ├── SVGLengthContext.h │ │ ├── SVGLengthList.h │ │ ├── SVGLengthList.idl │ │ ├── SVGLengthValue.cpp │ │ ├── SVGLengthValue.h │ │ ├── SVGLineElement.cpp │ │ ├── SVGLineElement.h │ │ ├── SVGLineElement.idl │ │ ├── SVGLinearGradientElement.cpp │ │ ├── SVGLinearGradientElement.h │ │ ├── SVGLinearGradientElement.idl │ │ ├── SVGLocatable.cpp │ │ ├── SVGLocatable.h │ │ ├── SVGMPathElement.cpp │ │ ├── SVGMPathElement.h │ │ ├── SVGMPathElement.idl │ │ ├── SVGMarkerElement.cpp │ │ ├── SVGMarkerElement.h │ │ ├── SVGMarkerElement.idl │ │ ├── SVGMarkerTypes.h │ │ ├── SVGMaskElement.cpp │ │ ├── SVGMaskElement.h │ │ ├── SVGMaskElement.idl │ │ ├── SVGMatrix.h │ │ ├── SVGMatrix.idl │ │ ├── SVGMetadataElement.cpp │ │ ├── SVGMetadataElement.h │ │ ├── SVGMetadataElement.idl │ │ ├── SVGMissingGlyphElement.cpp │ │ ├── SVGMissingGlyphElement.h │ │ ├── SVGMissingGlyphElement.idl │ │ ├── SVGNumber.h │ │ ├── SVGNumber.idl │ │ ├── SVGNumberList.h │ │ ├── SVGNumberList.idl │ │ ├── SVGParserUtilities.cpp │ │ ├── SVGParserUtilities.h │ │ ├── SVGParsingError.h │ │ ├── SVGPathBlender.cpp │ │ ├── SVGPathBlender.h │ │ ├── SVGPathBuilder.cpp │ │ ├── SVGPathBuilder.h │ │ ├── SVGPathByteStream.h │ │ ├── SVGPathByteStreamBuilder.cpp │ │ ├── SVGPathByteStreamBuilder.h │ │ ├── SVGPathByteStreamSource.cpp │ │ ├── SVGPathByteStreamSource.h │ │ ├── SVGPathConsumer.h │ │ ├── SVGPathElement.cpp │ │ ├── SVGPathElement.h │ │ ├── SVGPathElement.idl │ │ ├── SVGPathParser.cpp │ │ ├── SVGPathParser.h │ │ ├── SVGPathSeg.h │ │ ├── SVGPathSeg.idl │ │ ├── SVGPathSegArcAbs.idl │ │ ├── SVGPathSegArcRel.idl │ │ ├── SVGPathSegClosePath.idl │ │ ├── SVGPathSegCurvetoCubicAbs.idl │ │ ├── SVGPathSegCurvetoCubicRel.idl │ │ ├── SVGPathSegCurvetoCubicSmoothAbs.idl │ │ ├── SVGPathSegCurvetoCubicSmoothRel.idl │ │ ├── SVGPathSegCurvetoQuadraticAbs.idl │ │ ├── SVGPathSegCurvetoQuadraticRel.idl │ │ ├── SVGPathSegCurvetoQuadraticSmoothAbs.idl │ │ ├── SVGPathSegCurvetoQuadraticSmoothRel.idl │ │ ├── SVGPathSegImpl.h │ │ ├── SVGPathSegLinetoAbs.idl │ │ ├── SVGPathSegLinetoHorizontalAbs.idl │ │ ├── SVGPathSegLinetoHorizontalRel.idl │ │ ├── SVGPathSegLinetoRel.idl │ │ ├── SVGPathSegLinetoVerticalAbs.idl │ │ ├── SVGPathSegLinetoVerticalRel.idl │ │ ├── SVGPathSegList.h │ │ ├── SVGPathSegList.idl │ │ ├── SVGPathSegListBuilder.cpp │ │ ├── SVGPathSegListBuilder.h │ │ ├── SVGPathSegListSource.cpp │ │ ├── SVGPathSegListSource.h │ │ ├── SVGPathSegMovetoAbs.idl │ │ ├── SVGPathSegMovetoRel.idl │ │ ├── SVGPathSegValue.h │ │ ├── SVGPathSource.h │ │ ├── SVGPathStringBuilder.cpp │ │ ├── SVGPathStringBuilder.h │ │ ├── SVGPathStringSource.cpp │ │ ├── SVGPathStringSource.h │ │ ├── SVGPathTraversalStateBuilder.cpp │ │ ├── SVGPathTraversalStateBuilder.h │ │ ├── SVGPathUtilities.cpp │ │ ├── SVGPathUtilities.h │ │ ├── SVGPatternElement.cpp │ │ ├── SVGPatternElement.h │ │ ├── SVGPatternElement.idl │ │ ├── SVGPoint.h │ │ ├── SVGPoint.idl │ │ ├── SVGPointList.h │ │ ├── SVGPointList.idl │ │ ├── SVGPolyElement.cpp │ │ ├── SVGPolyElement.h │ │ ├── SVGPolygonElement.cpp │ │ ├── SVGPolygonElement.h │ │ ├── SVGPolygonElement.idl │ │ ├── SVGPolylineElement.cpp │ │ ├── SVGPolylineElement.h │ │ ├── SVGPolylineElement.idl │ │ ├── SVGPreserveAspectRatio.h │ │ ├── SVGPreserveAspectRatio.idl │ │ ├── SVGPreserveAspectRatioValue.cpp │ │ ├── SVGPreserveAspectRatioValue.h │ │ ├── SVGRadialGradientElement.cpp │ │ ├── SVGRadialGradientElement.h │ │ ├── SVGRadialGradientElement.idl │ │ ├── SVGRect.h │ │ ├── SVGRect.idl │ │ ├── SVGRectElement.cpp │ │ ├── SVGRectElement.h │ │ ├── SVGRectElement.idl │ │ ├── SVGRenderingIntent.h │ │ ├── SVGRenderingIntent.idl │ │ ├── SVGSVGElement.cpp │ │ ├── SVGSVGElement.h │ │ ├── SVGSVGElement.idl │ │ ├── SVGScriptElement.cpp │ │ ├── SVGScriptElement.h │ │ ├── SVGScriptElement.idl │ │ ├── SVGSetElement.cpp │ │ ├── SVGSetElement.h │ │ ├── SVGSetElement.idl │ │ ├── SVGStopElement.cpp │ │ ├── SVGStopElement.h │ │ ├── SVGStopElement.idl │ │ ├── SVGStringList.h │ │ ├── SVGStringList.idl │ │ ├── SVGStyleElement.cpp │ │ ├── SVGStyleElement.h │ │ ├── SVGStyleElement.idl │ │ ├── SVGSwitchElement.cpp │ │ ├── SVGSwitchElement.h │ │ ├── SVGSwitchElement.idl │ │ ├── SVGSymbolElement.cpp │ │ ├── SVGSymbolElement.h │ │ ├── SVGSymbolElement.idl │ │ ├── SVGTRefElement.cpp │ │ ├── SVGTRefElement.h │ │ ├── SVGTRefElement.idl │ │ ├── SVGTSpanElement.cpp │ │ ├── SVGTSpanElement.h │ │ ├── SVGTSpanElement.idl │ │ ├── SVGTests.cpp │ │ ├── SVGTests.h │ │ ├── SVGTests.idl │ │ ├── SVGTextContentElement.cpp │ │ ├── SVGTextContentElement.h │ │ ├── SVGTextContentElement.idl │ │ ├── SVGTextElement.cpp │ │ ├── SVGTextElement.h │ │ ├── SVGTextElement.idl │ │ ├── SVGTextPathElement.cpp │ │ ├── SVGTextPathElement.h │ │ ├── SVGTextPathElement.idl │ │ ├── SVGTextPositioningElement.cpp │ │ ├── SVGTextPositioningElement.h │ │ ├── SVGTextPositioningElement.idl │ │ ├── SVGTitleElement.cpp │ │ ├── SVGTitleElement.h │ │ ├── SVGTitleElement.idl │ │ ├── SVGToOTFFontConversion.cpp │ │ ├── SVGToOTFFontConversion.h │ │ ├── SVGTransform.h │ │ ├── SVGTransform.idl │ │ ├── SVGTransformDistance.cpp │ │ ├── SVGTransformDistance.h │ │ ├── SVGTransformList.h │ │ ├── SVGTransformList.idl │ │ ├── SVGTransformValue.h │ │ ├── SVGTransformable.cpp │ │ ├── SVGTransformable.h │ │ ├── SVGURIReference.cpp │ │ ├── SVGURIReference.h │ │ ├── SVGURIReference.idl │ │ ├── SVGUnitTypes.h │ │ ├── SVGUnitTypes.idl │ │ ├── SVGUnknownElement.cpp │ │ ├── SVGUnknownElement.h │ │ ├── SVGUseElement.cpp │ │ ├── SVGUseElement.h │ │ ├── SVGUseElement.idl │ │ ├── SVGVKernElement.cpp │ │ ├── SVGVKernElement.h │ │ ├── SVGVKernElement.idl │ │ ├── SVGViewElement.cpp │ │ ├── SVGViewElement.h │ │ ├── SVGViewElement.idl │ │ ├── SVGViewSpec.cpp │ │ ├── SVGViewSpec.h │ │ ├── SVGViewSpec.idl │ │ ├── SVGZoomAndPan.cpp │ │ ├── SVGZoomAndPan.h │ │ ├── SVGZoomAndPan.idl │ │ ├── SVGZoomAndPanType.h │ │ ├── SVGZoomEvent.cpp │ │ ├── SVGZoomEvent.h │ │ ├── SVGZoomEvent.idl │ │ ├── animation │ │ │ ├── SMILTime.cpp │ │ │ ├── SMILTime.h │ │ │ ├── SMILTimeContainer.cpp │ │ │ ├── SMILTimeContainer.h │ │ │ ├── SVGSMILElement.cpp │ │ │ └── SVGSMILElement.h │ │ ├── graphics │ │ │ ├── SVGImage.cpp │ │ │ ├── SVGImage.h │ │ │ ├── SVGImageCache.cpp │ │ │ ├── SVGImageCache.h │ │ │ ├── SVGImageClients.h │ │ │ ├── SVGImageForContainer.cpp │ │ │ ├── SVGImageForContainer.h │ │ │ └── filters │ │ │ │ ├── SVGFEImage.cpp │ │ │ │ ├── SVGFEImage.h │ │ │ │ ├── SVGFilter.cpp │ │ │ │ ├── SVGFilter.h │ │ │ │ ├── SVGFilterBuilder.cpp │ │ │ │ └── SVGFilterBuilder.h │ │ ├── properties │ │ │ ├── SVGAnimatedDecoratedProperty.h │ │ │ ├── SVGAnimatedPrimitiveProperty.h │ │ │ ├── SVGAnimatedProperty.cpp │ │ │ ├── SVGAnimatedProperty.h │ │ │ ├── SVGAnimatedPropertyAccessor.h │ │ │ ├── SVGAnimatedPropertyAccessorImpl.h │ │ │ ├── SVGAnimatedPropertyAnimator.h │ │ │ ├── SVGAnimatedPropertyAnimatorImpl.h │ │ │ ├── SVGAnimatedPropertyImpl.h │ │ │ ├── SVGAnimatedPropertyList.h │ │ │ ├── SVGAnimatedPropertyPairAccessor.h │ │ │ ├── SVGAnimatedPropertyPairAccessorImpl.h │ │ │ ├── SVGAnimatedPropertyPairAnimator.h │ │ │ ├── SVGAnimatedPropertyPairAnimatorImpl.h │ │ │ ├── SVGAnimatedValueProperty.h │ │ │ ├── SVGAnimationAdditiveFunction.h │ │ │ ├── SVGAnimationAdditiveListFunction.h │ │ │ ├── SVGAnimationAdditiveListFunctionImpl.h │ │ │ ├── SVGAnimationAdditiveValueFunction.h │ │ │ ├── SVGAnimationAdditiveValueFunctionImpl.cpp │ │ │ ├── SVGAnimationAdditiveValueFunctionImpl.h │ │ │ ├── SVGAnimationDiscreteFunction.h │ │ │ ├── SVGAnimationDiscreteFunctionImpl.h │ │ │ ├── SVGAnimationFunction.h │ │ │ ├── SVGAttributeAnimator.cpp │ │ │ ├── SVGAttributeAnimator.h │ │ │ ├── SVGDecoratedEnumeration.h │ │ │ ├── SVGDecoratedPrimitive.h │ │ │ ├── SVGDecoratedProperty.h │ │ │ ├── SVGList.h │ │ │ ├── SVGMemberAccessor.h │ │ │ ├── SVGPointerMemberAccessor.h │ │ │ ├── SVGPrimitiveList.h │ │ │ ├── SVGPrimitivePropertyAnimator.h │ │ │ ├── SVGPrimitivePropertyAnimatorImpl.h │ │ │ ├── SVGProperty.h │ │ │ ├── SVGPropertyAccessor.h │ │ │ ├── SVGPropertyAccessorImpl.h │ │ │ ├── SVGPropertyAnimator.h │ │ │ ├── SVGPropertyAnimatorFactory.h │ │ │ ├── SVGPropertyList.h │ │ │ ├── SVGPropertyOwner.h │ │ │ ├── SVGPropertyOwnerRegistry.h │ │ │ ├── SVGPropertyRegistry.h │ │ │ ├── SVGPropertyTraits.h │ │ │ ├── SVGSharedPrimitiveProperty.h │ │ │ ├── SVGValueProperty.h │ │ │ ├── SVGValuePropertyAnimator.h │ │ │ ├── SVGValuePropertyAnimatorImpl.h │ │ │ ├── SVGValuePropertyList.h │ │ │ ├── SVGValuePropertyListAnimator.h │ │ │ └── SVGValuePropertyListAnimatorImpl.h │ │ ├── svgattrs.in │ │ ├── svgtags.in │ │ └── xlinkattrs.in │ ├── testing │ │ ├── GCObservation.cpp │ │ ├── GCObservation.h │ │ ├── GCObservation.idl │ │ ├── InternalSettings.cpp │ │ ├── InternalSettings.h │ │ ├── InternalSettings.idl │ │ ├── Internals.cpp │ │ ├── Internals.h │ │ ├── Internals.idl │ │ ├── Internals.mm │ │ ├── LegacyMockCDM.cpp │ │ ├── LegacyMockCDM.h │ │ ├── MallocStatistics.h │ │ ├── MallocStatistics.idl │ │ ├── MemoryInfo.h │ │ ├── MemoryInfo.idl │ │ ├── MockCDMFactory.cpp │ │ ├── MockCDMFactory.h │ │ ├── MockCDMFactory.idl │ │ ├── MockContentFilter.cpp │ │ ├── MockContentFilter.h │ │ ├── MockContentFilterSettings.cpp │ │ ├── MockContentFilterSettings.h │ │ ├── MockContentFilterSettings.idl │ │ ├── MockGamepad.cpp │ │ ├── MockGamepad.h │ │ ├── MockGamepadProvider.cpp │ │ ├── MockGamepadProvider.h │ │ ├── MockLibWebRTCPeerConnection.cpp │ │ ├── MockLibWebRTCPeerConnection.h │ │ ├── MockPageOverlay.cpp │ │ ├── MockPageOverlay.h │ │ ├── MockPageOverlay.idl │ │ ├── MockPageOverlayClient.cpp │ │ ├── MockPageOverlayClient.h │ │ ├── MockPayment.h │ │ ├── MockPaymentAddress.h │ │ ├── MockPaymentAddress.idl │ │ ├── MockPaymentContact.h │ │ ├── MockPaymentContactFields.h │ │ ├── MockPaymentContactFields.idl │ │ ├── MockPaymentCoordinator.cpp │ │ ├── MockPaymentCoordinator.h │ │ ├── MockPaymentCoordinator.idl │ │ ├── MockPaymentError.h │ │ ├── MockPaymentError.idl │ │ ├── MockPaymentMethod.h │ │ ├── MockPreviewLoaderClient.cpp │ │ ├── MockPreviewLoaderClient.h │ │ ├── ServiceWorkerInternals.cpp │ │ ├── ServiceWorkerInternals.h │ │ ├── ServiceWorkerInternals.idl │ │ ├── ServiceWorkerInternals.mm │ │ ├── TypeConversions.h │ │ ├── TypeConversions.idl │ │ ├── WebCoreTestShimLibrary.cpp │ │ ├── cocoa │ │ │ ├── WebArchiveDumpSupport.h │ │ │ └── WebArchiveDumpSupport.mm │ │ └── js │ │ │ ├── WebCoreTestSupport.cpp │ │ │ ├── WebCoreTestSupport.h │ │ │ ├── WebCoreTestSupportPrefix.cpp │ │ │ └── WebCoreTestSupportPrefix.h │ ├── workers │ │ ├── AbstractWorker.cpp │ │ ├── AbstractWorker.h │ │ ├── AbstractWorker.idl │ │ ├── DedicatedWorkerGlobalScope.cpp │ │ ├── DedicatedWorkerGlobalScope.h │ │ ├── DedicatedWorkerGlobalScope.idl │ │ ├── DedicatedWorkerThread.cpp │ │ ├── DedicatedWorkerThread.h │ │ ├── Worker.cpp │ │ ├── Worker.h │ │ ├── Worker.idl │ │ ├── WorkerConsoleClient.cpp │ │ ├── WorkerConsoleClient.h │ │ ├── WorkerDebuggerProxy.h │ │ ├── WorkerEventQueue.cpp │ │ ├── WorkerEventQueue.h │ │ ├── WorkerGlobalScope.cpp │ │ ├── WorkerGlobalScope.h │ │ ├── WorkerGlobalScope.idl │ │ ├── WorkerGlobalScopeProxy.h │ │ ├── WorkerInspectorProxy.cpp │ │ ├── WorkerInspectorProxy.h │ │ ├── WorkerLoaderProxy.h │ │ ├── WorkerLocation.cpp │ │ ├── WorkerLocation.h │ │ ├── WorkerLocation.idl │ │ ├── WorkerMessagingProxy.cpp │ │ ├── WorkerMessagingProxy.h │ │ ├── WorkerObjectProxy.h │ │ ├── WorkerReportingProxy.h │ │ ├── WorkerRunLoop.cpp │ │ ├── WorkerRunLoop.h │ │ ├── WorkerScriptLoader.cpp │ │ ├── WorkerScriptLoader.h │ │ ├── WorkerScriptLoaderClient.h │ │ ├── WorkerThread.cpp │ │ ├── WorkerThread.h │ │ ├── WorkerType.h │ │ ├── WorkerType.idl │ │ └── service │ │ │ ├── ExtendableEvent.cpp │ │ │ ├── ExtendableEvent.h │ │ │ ├── ExtendableEvent.idl │ │ │ ├── ExtendableEventInit.h │ │ │ ├── ExtendableEventInit.idl │ │ │ ├── ExtendableMessageEvent.cpp │ │ │ ├── ExtendableMessageEvent.h │ │ │ ├── ExtendableMessageEvent.idl │ │ │ ├── FetchEvent.cpp │ │ │ ├── FetchEvent.h │ │ │ ├── FetchEvent.idl │ │ │ ├── SWClientConnection.cpp │ │ │ ├── SWClientConnection.h │ │ │ ├── ServiceWorker.cpp │ │ │ ├── ServiceWorker.h │ │ │ ├── ServiceWorker.idl │ │ │ ├── ServiceWorkerClient.cpp │ │ │ ├── ServiceWorkerClient.h │ │ │ ├── ServiceWorkerClient.idl │ │ │ ├── ServiceWorkerClientData.cpp │ │ │ ├── ServiceWorkerClientData.h │ │ │ ├── ServiceWorkerClientIdentifier.h │ │ │ ├── ServiceWorkerClientQueryOptions.h │ │ │ ├── ServiceWorkerClientType.h │ │ │ ├── ServiceWorkerClientType.idl │ │ │ ├── ServiceWorkerClients.cpp │ │ │ ├── ServiceWorkerClients.h │ │ │ ├── ServiceWorkerClients.idl │ │ │ ├── ServiceWorkerContainer.cpp │ │ │ ├── ServiceWorkerContainer.h │ │ │ ├── ServiceWorkerContainer.idl │ │ │ ├── ServiceWorkerContextData.cpp │ │ │ ├── ServiceWorkerContextData.h │ │ │ ├── ServiceWorkerData.cpp │ │ │ ├── ServiceWorkerData.h │ │ │ ├── ServiceWorkerFetchResult.h │ │ │ ├── ServiceWorkerGlobalScope.cpp │ │ │ ├── ServiceWorkerGlobalScope.h │ │ │ ├── ServiceWorkerGlobalScope.idl │ │ │ ├── ServiceWorkerIdentifier.h │ │ │ ├── ServiceWorkerJob.cpp │ │ │ ├── ServiceWorkerJob.h │ │ │ ├── ServiceWorkerJobClient.h │ │ │ ├── ServiceWorkerJobData.cpp │ │ │ ├── ServiceWorkerJobData.h │ │ │ ├── ServiceWorkerJobDataIdentifier.h │ │ │ ├── ServiceWorkerJobType.h │ │ │ ├── ServiceWorkerProvider.cpp │ │ │ ├── ServiceWorkerProvider.h │ │ │ ├── ServiceWorkerRegistration.cpp │ │ │ ├── ServiceWorkerRegistration.h │ │ │ ├── ServiceWorkerRegistration.idl │ │ │ ├── ServiceWorkerRegistrationData.cpp │ │ │ ├── ServiceWorkerRegistrationData.h │ │ │ ├── ServiceWorkerRegistrationKey.cpp │ │ │ ├── ServiceWorkerRegistrationKey.h │ │ │ ├── ServiceWorkerRegistrationOptions.cpp │ │ │ ├── ServiceWorkerRegistrationOptions.h │ │ │ ├── ServiceWorkerTypes.h │ │ │ ├── ServiceWorkerUpdateViaCache.h │ │ │ ├── ServiceWorkerUpdateViaCache.idl │ │ │ ├── ServiceWorkerWindowClient.cpp │ │ │ ├── ServiceWorkerWindowClient.h │ │ │ ├── ServiceWorkerWindowClient.idl │ │ │ ├── context │ │ │ ├── SWContextManager.cpp │ │ │ ├── SWContextManager.h │ │ │ ├── ServiceWorkerDebuggable.cpp │ │ │ ├── ServiceWorkerDebuggable.h │ │ │ ├── ServiceWorkerFetch.cpp │ │ │ ├── ServiceWorkerFetch.h │ │ │ ├── ServiceWorkerInspectorProxy.cpp │ │ │ ├── ServiceWorkerInspectorProxy.h │ │ │ ├── ServiceWorkerThread.cpp │ │ │ ├── ServiceWorkerThread.h │ │ │ ├── ServiceWorkerThreadProxy.cpp │ │ │ └── ServiceWorkerThreadProxy.h │ │ │ └── server │ │ │ ├── RegistrationDatabase.cpp │ │ │ ├── RegistrationDatabase.h │ │ │ ├── RegistrationStore.cpp │ │ │ ├── RegistrationStore.h │ │ │ ├── SWOriginStore.cpp │ │ │ ├── SWOriginStore.h │ │ │ ├── SWServer.cpp │ │ │ ├── SWServer.h │ │ │ ├── SWServerJobQueue.cpp │ │ │ ├── SWServerJobQueue.h │ │ │ ├── SWServerRegistration.cpp │ │ │ ├── SWServerRegistration.h │ │ │ ├── SWServerToContextConnection.cpp │ │ │ ├── SWServerToContextConnection.h │ │ │ ├── SWServerWorker.cpp │ │ │ └── SWServerWorker.h │ ├── worklets │ │ ├── PaintWorkletGlobalScope.cpp │ │ ├── PaintWorkletGlobalScope.h │ │ ├── PaintWorkletGlobalScope.idl │ │ ├── Worklet.cpp │ │ ├── Worklet.h │ │ ├── Worklet.idl │ │ ├── WorkletConsoleClient.cpp │ │ ├── WorkletConsoleClient.h │ │ ├── WorkletGlobalScope.cpp │ │ ├── WorkletGlobalScope.h │ │ ├── WorkletGlobalScope.idl │ │ ├── WorkletScriptController.cpp │ │ └── WorkletScriptController.h │ └── xml │ │ ├── DOMParser.cpp │ │ ├── DOMParser.h │ │ ├── DOMParser.idl │ │ ├── NativeXPathNSResolver.cpp │ │ ├── NativeXPathNSResolver.h │ │ ├── SoftLinkLibxslt.cpp │ │ ├── SoftLinkLibxslt.h │ │ ├── XMLErrors.cpp │ │ ├── XMLErrors.h │ │ ├── XMLHttpRequest.cpp │ │ ├── XMLHttpRequest.h │ │ ├── XMLHttpRequest.idl │ │ ├── XMLHttpRequestEventTarget.h │ │ ├── XMLHttpRequestEventTarget.idl │ │ ├── XMLHttpRequestProgressEvent.h │ │ ├── XMLHttpRequestProgressEvent.idl │ │ ├── XMLHttpRequestProgressEventThrottle.cpp │ │ ├── XMLHttpRequestProgressEventThrottle.h │ │ ├── XMLHttpRequestUpload.cpp │ │ ├── XMLHttpRequestUpload.h │ │ ├── XMLHttpRequestUpload.idl │ │ ├── XMLSerializer.cpp │ │ ├── XMLSerializer.h │ │ ├── XMLSerializer.idl │ │ ├── XMLTreeViewer.cpp │ │ ├── XMLTreeViewer.h │ │ ├── XMLViewer.css │ │ ├── XMLViewer.js │ │ ├── XPathEvaluator.cpp │ │ ├── XPathEvaluator.h │ │ ├── XPathEvaluator.idl │ │ ├── XPathExpression.cpp │ │ ├── XPathExpression.h │ │ ├── XPathExpression.idl │ │ ├── XPathExpressionNode.cpp │ │ ├── XPathExpressionNode.h │ │ ├── XPathFunctions.cpp │ │ ├── XPathFunctions.h │ │ ├── XPathGrammar.cpp │ │ ├── XPathGrammar.h │ │ ├── XPathGrammar.y │ │ ├── XPathNSResolver.cpp │ │ ├── XPathNSResolver.h │ │ ├── XPathNSResolver.idl │ │ ├── XPathNodeSet.cpp │ │ ├── XPathNodeSet.h │ │ ├── XPathParser.cpp │ │ ├── XPathParser.h │ │ ├── XPathPath.cpp │ │ ├── XPathPath.h │ │ ├── XPathPredicate.cpp │ │ ├── XPathPredicate.h │ │ ├── XPathResult.cpp │ │ ├── XPathResult.h │ │ ├── XPathResult.idl │ │ ├── XPathStep.cpp │ │ ├── XPathStep.h │ │ ├── XPathUtil.cpp │ │ ├── XPathUtil.h │ │ ├── XPathValue.cpp │ │ ├── XPathValue.h │ │ ├── XPathVariableReference.cpp │ │ ├── XPathVariableReference.h │ │ ├── XSLImportRule.cpp │ │ ├── XSLImportRule.h │ │ ├── XSLStyleSheet.h │ │ ├── XSLStyleSheetLibxslt.cpp │ │ ├── XSLTExtensions.cpp │ │ ├── XSLTExtensions.h │ │ ├── XSLTProcessor.cpp │ │ ├── XSLTProcessor.h │ │ ├── XSLTProcessor.idl │ │ ├── XSLTProcessorLibxslt.cpp │ │ ├── XSLTUnicodeSort.cpp │ │ ├── XSLTUnicodeSort.h │ │ ├── parser │ │ ├── CharacterReferenceParserInlines.h │ │ ├── MarkupTokenizerInlines.h │ │ ├── XMLDocumentParser.cpp │ │ ├── XMLDocumentParser.h │ │ ├── XMLDocumentParserLibxml2.cpp │ │ ├── XMLDocumentParserScope.cpp │ │ └── XMLDocumentParserScope.h │ │ ├── xmlattrs.in │ │ └── xmlnsattrs.in ├── WebInspectorUI │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitattributes │ ├── ChangeLog │ ├── ChangeLog-2013-06-11 │ ├── ChangeLog-2014-11-19 │ ├── ChangeLog-2015-11-21 │ ├── ChangeLog-2016-09-26 │ ├── ChangeLog-2018-01-01 │ ├── ChangeLog-2019-06-05 │ ├── Configurations │ │ ├── Base.xcconfig │ │ ├── DebugRelease.xcconfig │ │ ├── SDKVariant.xcconfig │ │ ├── Version.xcconfig │ │ ├── WebInspectorUIFramework.xcconfig │ │ └── WebKitTargetConditionals.xcconfig │ ├── Info.plist │ ├── Localizations │ │ └── en.lproj │ │ │ └── localizedStrings.js │ ├── Makefile │ ├── Scripts │ │ ├── combine-resources.pl │ │ ├── copy-user-interface-resources-dryrun.rb │ │ ├── copy-user-interface-resources.pl │ │ ├── fix-worker-imports-for-optimized-builds.pl │ │ ├── remove-console-asserts-dryrun.rb │ │ ├── remove-console-asserts.pl │ │ ├── update-LegacyInspectorBackendCommands.rb │ │ └── update-codemirror-resources.rb │ ├── Tools │ │ ├── Formatting │ │ │ ├── EsprimaFormatterDebug.js │ │ │ ├── codemirror-additions.css │ │ │ └── index.html │ │ └── PrettyPrinting │ │ │ ├── FormatterDebug.js │ │ │ ├── Utilities.js │ │ │ ├── codemirror-additions.css │ │ │ ├── index.html │ │ │ └── populate │ │ │ └── apple.css │ ├── UserInterface │ │ ├── Base │ │ │ ├── DOMUtilities.js │ │ │ ├── Debouncer.js │ │ │ ├── DebuggableType.js │ │ │ ├── EventListener.js │ │ │ ├── EventListenerSet.js │ │ │ ├── FileUtilities.js │ │ │ ├── ImageUtilities.js │ │ │ ├── LinkedList.js │ │ │ ├── ListMultimap.js │ │ │ ├── LoadLocalizedStrings.js │ │ │ ├── MIMETypeUtilities.js │ │ │ ├── Main.js │ │ │ ├── Multimap.js │ │ │ ├── Object.js │ │ │ ├── ObjectStore.js │ │ │ ├── Platform.js │ │ │ ├── SearchUtilities.js │ │ │ ├── Setting.js │ │ │ ├── Throttler.js │ │ │ ├── URLUtilities.js │ │ │ ├── Utilities.js │ │ │ ├── WebInspector.js │ │ │ └── YieldableTask.js │ │ ├── Controllers │ │ │ ├── Annotator.js │ │ │ ├── AppController.js │ │ │ ├── AppControllerBase.js │ │ │ ├── ApplicationCacheManager.js │ │ │ ├── AuditManager.js │ │ │ ├── BasicBlockAnnotator.js │ │ │ ├── BranchManager.js │ │ │ ├── BreakpointLogMessageLexer.js │ │ │ ├── BreakpointPopoverController.js │ │ │ ├── CSSManager.js │ │ │ ├── CallFrameTreeController.js │ │ │ ├── CanvasManager.js │ │ │ ├── CodeMirrorBezierEditingController.js │ │ │ ├── CodeMirrorColorEditingController.js │ │ │ ├── CodeMirrorCompletionController.css │ │ │ ├── CodeMirrorCompletionController.js │ │ │ ├── CodeMirrorDragToAdjustNumberController.css │ │ │ ├── CodeMirrorDragToAdjustNumberController.js │ │ │ ├── CodeMirrorEditingController.js │ │ │ ├── CodeMirrorGradientEditingController.js │ │ │ ├── CodeMirrorSpringEditingController.js │ │ │ ├── CodeMirrorTextKillController.js │ │ │ ├── CodeMirrorTokenTrackingController.css │ │ │ ├── CodeMirrorTokenTrackingController.js │ │ │ ├── ConsoleManager.js │ │ │ ├── DOMDebuggerManager.js │ │ │ ├── DOMManager.js │ │ │ ├── DOMStorageManager.js │ │ │ ├── DatabaseManager.js │ │ │ ├── DebuggerManager.js │ │ │ ├── DragToAdjustController.js │ │ │ ├── Formatter.js │ │ │ ├── FormatterSourceMap.js │ │ │ ├── HARBuilder.js │ │ │ ├── HeapManager.js │ │ │ ├── IndexedDBManager.js │ │ │ ├── JavaScriptLogViewController.js │ │ │ ├── JavaScriptRuntimeCompletionProvider.js │ │ │ ├── LayerTreeManager.js │ │ │ ├── MemoryManager.js │ │ │ ├── NetworkManager.js │ │ │ ├── ResourceQueryController.js │ │ │ ├── RuntimeManager.js │ │ │ ├── SelectionController.js │ │ │ ├── TargetManager.js │ │ │ ├── TimelineManager.js │ │ │ ├── TypeTokenAnnotator.js │ │ │ └── WorkerManager.js │ │ ├── Debug │ │ │ ├── Bootstrap.js │ │ │ ├── CapturingProtocolTracer.js │ │ │ ├── DebugContentView.css │ │ │ ├── DebugContentView.js │ │ │ ├── ProtocolTrace.js │ │ │ ├── UncaughtExceptionReporter.css │ │ │ └── UncaughtExceptionReporter.js │ │ ├── External │ │ │ ├── CodeMirror │ │ │ │ ├── LICENSE │ │ │ │ ├── clike.js │ │ │ │ ├── clojure.js │ │ │ │ ├── closebrackets.js │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── coffeescript.js │ │ │ │ ├── comment.js │ │ │ │ ├── css.js │ │ │ │ ├── htmlmixed.js │ │ │ │ ├── javascript.js │ │ │ │ ├── jsx.js │ │ │ │ ├── livescript.js │ │ │ │ ├── mark-selection.js │ │ │ │ ├── matchbrackets.js │ │ │ │ ├── overlay.js │ │ │ │ ├── placeholder.js │ │ │ │ ├── runmode.js │ │ │ │ ├── sass.js │ │ │ │ ├── searchcursor.js │ │ │ │ ├── sql.js │ │ │ │ ├── sublime.js │ │ │ │ └── xml.js │ │ │ ├── Esprima │ │ │ │ ├── LICENSE │ │ │ │ └── esprima.js │ │ │ └── three.js │ │ │ │ ├── LICENSE │ │ │ │ ├── OrbitControls.js │ │ │ │ └── three.js │ │ ├── Images │ │ │ ├── ActiveCallFrame.svg │ │ │ ├── Appearance.svg │ │ │ ├── ApplicationCache.png │ │ │ ├── ApplicationCache@2x.png │ │ │ ├── ApplicationCacheManifest.png │ │ │ ├── ApplicationCacheManifest@2x.png │ │ │ ├── ArrowUp.svg │ │ │ ├── Assertion.svg │ │ │ ├── Audit.svg │ │ │ ├── AuditStart.svg │ │ │ ├── AuditStop.svg │ │ │ ├── AuditTestCase.svg │ │ │ ├── AuditTestCaseResult.svg │ │ │ ├── AuditTestError.svg │ │ │ ├── AuditTestFail.svg │ │ │ ├── AuditTestGroup.svg │ │ │ ├── AuditTestGroupResult.svg │ │ │ ├── AuditTestNoResult.svg │ │ │ ├── AuditTestPass.svg │ │ │ ├── AuditTestUnsupported.svg │ │ │ ├── AuditTestWarn.svg │ │ │ ├── BackForwardArrows.svg │ │ │ ├── Beacon.svg │ │ │ ├── Breakpoint.svg │ │ │ ├── BreakpointButton.svg │ │ │ ├── BreakpointInactiveButton.svg │ │ │ ├── Breakpoints.svg │ │ │ ├── CPUInstrument.svg │ │ │ ├── CSSVariable.svg │ │ │ ├── CallStack.svg │ │ │ ├── CallTrees.svg │ │ │ ├── Camera.svg │ │ │ ├── Canvas.svg │ │ │ ├── Canvas2D.svg │ │ │ ├── Canvas3D.svg │ │ │ ├── CanvasOverview.svg │ │ │ ├── Checkers.svg │ │ │ ├── Circle.svg │ │ │ ├── Clip.svg │ │ │ ├── ClippingCSS.png │ │ │ ├── ClippingCSS@2x.png │ │ │ ├── ClippingCSSLarge.png │ │ │ ├── ClippingCSSLarge@2x.png │ │ │ ├── ClippingGeneric.png │ │ │ ├── ClippingGeneric@2x.png │ │ │ ├── ClippingGenericLarge.png │ │ │ ├── ClippingGenericLarge@2x.png │ │ │ ├── ClippingJS.png │ │ │ ├── ClippingJS@2x.png │ │ │ ├── ClippingJSLarge.png │ │ │ ├── ClippingJSLarge@2x.png │ │ │ ├── Close.svg │ │ │ ├── CloseLarge.svg │ │ │ ├── CloseWhite.svg │ │ │ ├── ColorIcon.png │ │ │ ├── ColorIcon@2x.png │ │ │ ├── Compare.svg │ │ │ ├── Composite.svg │ │ │ ├── Console.svg │ │ │ ├── ConsoleImage.svg │ │ │ ├── Cookie.png │ │ │ ├── Cookie@2x.png │ │ │ ├── Crosshair.svg │ │ │ ├── CubicBezier.svg │ │ │ ├── DOMBreakpoint.svg │ │ │ ├── DOMBreakpointAttributeModified.svg │ │ │ ├── DOMBreakpointNodeRemoved.svg │ │ │ ├── DOMBreakpointSubtreeModified.svg │ │ │ ├── DOMCharacterData.svg │ │ │ ├── DOMComment.svg │ │ │ ├── DOMDocument.svg │ │ │ ├── DOMDocumentType.svg │ │ │ ├── DOMElement.svg │ │ │ ├── DOMEvent.svg │ │ │ ├── DOMEventFullscreen.svg │ │ │ ├── DOMNode.svg │ │ │ ├── DOMTextNode.svg │ │ │ ├── Database.png │ │ │ ├── Database@2x.png │ │ │ ├── DatabaseTable.png │ │ │ ├── DatabaseTable@2x.png │ │ │ ├── Debug.svg │ │ │ ├── Debugger.svg │ │ │ ├── Device.svg │ │ │ ├── DisclosureTriangles.svg │ │ │ ├── DockBottom.svg │ │ │ ├── DockLeft.svg │ │ │ ├── DockRight.svg │ │ │ ├── DocumentCSS.png │ │ │ ├── DocumentCSS@2x.png │ │ │ ├── DocumentCSSLarge.png │ │ │ ├── DocumentCSSLarge@2x.png │ │ │ ├── DocumentFont.png │ │ │ ├── DocumentFont@2x.png │ │ │ ├── DocumentFontLarge.png │ │ │ ├── DocumentFontLarge@2x.png │ │ │ ├── DocumentGL.png │ │ │ ├── DocumentGL@2x.png │ │ │ ├── DocumentGeneric.png │ │ │ ├── DocumentGeneric@2x.png │ │ │ ├── DocumentGenericLarge.png │ │ │ ├── DocumentGenericLarge@2x.png │ │ │ ├── DocumentImage.png │ │ │ ├── DocumentImage@2x.png │ │ │ ├── DocumentImageLarge.png │ │ │ ├── DocumentImageLarge@2x.png │ │ │ ├── DocumentJS.png │ │ │ ├── DocumentJS@2x.png │ │ │ ├── DocumentJSLarge.png │ │ │ ├── DocumentJSLarge@2x.png │ │ │ ├── DocumentMarkup.png │ │ │ ├── DocumentMarkup@2x.png │ │ │ ├── DocumentMarkupLarge.png │ │ │ ├── DocumentMarkupLarge@2x.png │ │ │ ├── DownloadArrow.svg │ │ │ ├── Elements.svg │ │ │ ├── Error.svg │ │ │ ├── Errors.svg │ │ │ ├── ErrorsEnabled.svg │ │ │ ├── EventBreakpointAnimationFrame.svg │ │ │ ├── EventBreakpointListener.svg │ │ │ ├── EventBreakpointTimer.svg │ │ │ ├── EventListener.svg │ │ │ ├── EventPause.svg │ │ │ ├── EventPlay.svg │ │ │ ├── EventProcessing.svg │ │ │ ├── EventStop.svg │ │ │ ├── Events.svg │ │ │ ├── Exception.svg │ │ │ ├── Export.svg │ │ │ ├── Eye.svg │ │ │ ├── Fill.svg │ │ │ ├── FilterFieldActiveGlyph.svg │ │ │ ├── FilterFieldGlyph.svg │ │ │ ├── FolderGeneric.png │ │ │ ├── FolderGeneric@2x.png │ │ │ ├── Function.svg │ │ │ ├── Gear.svg │ │ │ ├── GoToArrow.svg │ │ │ ├── GradientStop.png │ │ │ ├── GradientStop@2x.png │ │ │ ├── GradientStopSelected.png │ │ │ ├── GradientStopSelected@2x.png │ │ │ ├── HeapAllocationsInstrument.svg │ │ │ ├── HeapSnapshot.svg │ │ │ ├── HeapSnapshotDiff.svg │ │ │ ├── HeapSnapshotInstances.svg │ │ │ ├── HeapSnapshotObjectGraph.svg │ │ │ ├── HeapSnapshotSelected.svg │ │ │ ├── HeapSnapshotSummary.svg │ │ │ ├── HideConsoleDrawer.svg │ │ │ ├── HierarchicalNavigationItemChevron.svg │ │ │ ├── HoverMenuButton.png │ │ │ ├── HoverMenuButton@2x.png │ │ │ ├── IgnoreCaches.svg │ │ │ ├── Image.svg │ │ │ ├── Import.svg │ │ │ ├── IndeterminateProgressSpinner1.svg │ │ │ ├── IndeterminateProgressSpinner10.svg │ │ │ ├── IndeterminateProgressSpinner11.svg │ │ │ ├── IndeterminateProgressSpinner12.svg │ │ │ ├── IndeterminateProgressSpinner2.svg │ │ │ ├── IndeterminateProgressSpinner3.svg │ │ │ ├── IndeterminateProgressSpinner4.svg │ │ │ ├── IndeterminateProgressSpinner5.svg │ │ │ ├── IndeterminateProgressSpinner6.svg │ │ │ ├── IndeterminateProgressSpinner7.svg │ │ │ ├── IndeterminateProgressSpinner8.svg │ │ │ ├── IndeterminateProgressSpinner9.svg │ │ │ ├── Info.svg │ │ │ ├── InstructionPointer.png │ │ │ ├── InstructionPointer@2x.png │ │ │ ├── Issues.svg │ │ │ ├── IssuesEnabled.svg │ │ │ ├── LayerBorders.svg │ │ │ ├── Layers.svg │ │ │ ├── LayoutInstrument.svg │ │ │ ├── LineStyle.svg │ │ │ ├── LocalStorage.png │ │ │ ├── LocalStorage@2x.png │ │ │ ├── Locked.svg │ │ │ ├── Log.svg │ │ │ ├── Logs.svg │ │ │ ├── Markup.svg │ │ │ ├── MediaInstrument.svg │ │ │ ├── MemoryInstrument.svg │ │ │ ├── Minus.svg │ │ │ ├── Native.svg │ │ │ ├── NavigationItemCheckers.svg │ │ │ ├── NavigationItemCodeCoverage.svg │ │ │ ├── NavigationItemCurleyBraces.svg │ │ │ ├── NavigationItemGarbageCollect.svg │ │ │ ├── NavigationItemTrash.svg │ │ │ ├── NavigationItemTypes.svg │ │ │ ├── Network.svg │ │ │ ├── NetworkHAR.svg │ │ │ ├── NetworkInstrument.svg │ │ │ ├── NetworkOverview.svg │ │ │ ├── NewTab.svg │ │ │ ├── NewTabPlus.svg │ │ │ ├── Paint.svg │ │ │ ├── Palette.svg │ │ │ ├── Path.svg │ │ │ ├── PathArc.svg │ │ │ ├── PathCurve.svg │ │ │ ├── PathEllipse.svg │ │ │ ├── PathLineTo.svg │ │ │ ├── PathMoveTo.svg │ │ │ ├── PathRect.svg │ │ │ ├── Pause.svg │ │ │ ├── PausedBreakpoint.svg │ │ │ ├── Pencil.svg │ │ │ ├── Pixels.svg │ │ │ ├── Plus13.svg │ │ │ ├── Plus15.svg │ │ │ ├── PointInPath.svg │ │ │ ├── PointInStroke.svg │ │ │ ├── PowerEfficientPlaybackStateChanged.svg │ │ │ ├── Printer.svg │ │ │ ├── Program.svg │ │ │ ├── PseudoElement.svg │ │ │ ├── Range.svg │ │ │ ├── RangeLarge.svg │ │ │ ├── Receiving.svg │ │ │ ├── Record.svg │ │ │ ├── Recording.svg │ │ │ ├── Reflection.svg │ │ │ ├── ReloadFull.svg │ │ │ ├── ReloadToolbar.svg │ │ │ ├── RenderingFrame.svg │ │ │ ├── RenderingFramesInstrument.svg │ │ │ ├── Request.svg │ │ │ ├── Resources.svg │ │ │ ├── Response.svg │ │ │ ├── ResultLine.svg │ │ │ ├── Resume.svg │ │ │ ├── Rulers.svg │ │ │ ├── ScriptsInstrument.svg │ │ │ ├── Search.svg │ │ │ ├── SearchResults.svg │ │ │ ├── Sending.svg │ │ │ ├── SessionStorage.png │ │ │ ├── SessionStorage@2x.png │ │ │ ├── Shadow.svg │ │ │ ├── ShadowDOM.svg │ │ │ ├── ShowConsoleDrawer.svg │ │ │ ├── SliderThumb.png │ │ │ ├── SliderThumb@2x.png │ │ │ ├── SliderThumbPressed.png │ │ │ ├── SliderThumbPressed@2x.png │ │ │ ├── SortIndicatorArrows.svg │ │ │ ├── Source.svg │ │ │ ├── Sources.svg │ │ │ ├── SplitToggleUp.svg │ │ │ ├── StepInto.svg │ │ │ ├── StepOut.svg │ │ │ ├── StepOver.svg │ │ │ ├── Stop.svg │ │ │ ├── Stopwatch.svg │ │ │ ├── Storage.svg │ │ │ ├── Stroke.svg │ │ │ ├── TabPicker.svg │ │ │ ├── TailDeletedFunction.svg │ │ │ ├── Text.svg │ │ │ ├── Thread.svg │ │ │ ├── Time.svg │ │ │ ├── Timeline.svg │ │ │ ├── TimelineRecordAPI.svg │ │ │ ├── TimelineRecordAnimation.svg │ │ │ ├── TimelineRecordComposite.svg │ │ │ ├── TimelineRecordConsoleProfile.svg │ │ │ ├── TimelineRecordEvent.svg │ │ │ ├── TimelineRecordGarbageCollection.svg │ │ │ ├── TimelineRecordLayout.svg │ │ │ ├── TimelineRecordPaint.svg │ │ │ ├── TimelineRecordProbeSampled.svg │ │ │ ├── TimelineRecordScriptEvaluated.svg │ │ │ ├── TimelineRecordStyle.svg │ │ │ ├── TimelineRecordTimer.svg │ │ │ ├── ToggleLeftSidebar.svg │ │ │ ├── ToggleRightSidebar.svg │ │ │ ├── Transform.svg │ │ │ ├── TypeBoolean.svg │ │ │ ├── TypeNull.svg │ │ │ ├── TypeNumber.svg │ │ │ ├── TypeObject.svg │ │ │ ├── TypeRegex.svg │ │ │ ├── TypeString.svg │ │ │ ├── TypeSymbol.svg │ │ │ ├── TypeUndefined.svg │ │ │ ├── URLBreakpoint.svg │ │ │ ├── Undock.svg │ │ │ ├── UpDownArrows.svg │ │ │ ├── UserInputPrompt.svg │ │ │ ├── UserInputPromptPrevious.svg │ │ │ ├── UserInputResult.svg │ │ │ ├── Warning.svg │ │ │ ├── WebSocket.png │ │ │ ├── WebSocket@2x.png │ │ │ ├── WebSocketLarge.png │ │ │ ├── WebSocketLarge@2x.png │ │ │ ├── Weight.svg │ │ │ ├── WorkerScript.png │ │ │ ├── WorkerScript@2x.png │ │ │ ├── WorkerScriptLarge.png │ │ │ └── WorkerScriptLarge@2x.png │ │ ├── Main.html │ │ ├── Models │ │ │ ├── ApplicationCacheFrame.js │ │ │ ├── ApplicationCacheManifest.js │ │ │ ├── AuditTestBase.js │ │ │ ├── AuditTestCase.js │ │ │ ├── AuditTestCaseResult.js │ │ │ ├── AuditTestGroup.js │ │ │ ├── AuditTestGroupResult.js │ │ │ ├── AuditTestResultBase.js │ │ │ ├── BackForwardEntry.js │ │ │ ├── Branch.js │ │ │ ├── Breakpoint.js │ │ │ ├── BreakpointAction.js │ │ │ ├── CPUInstrument.js │ │ │ ├── CPUTimeline.js │ │ │ ├── CPUTimelineRecord.js │ │ │ ├── CSSCompletions.js │ │ │ ├── CSSKeywordCompletions.js │ │ │ ├── CSSMedia.js │ │ │ ├── CSSProperty.js │ │ │ ├── CSSRule.js │ │ │ ├── CSSSelector.js │ │ │ ├── CSSStyleDeclaration.js │ │ │ ├── CSSStyleSheet.js │ │ │ ├── CallFrame.js │ │ │ ├── CallingContextTree.js │ │ │ ├── CallingContextTreeNode.js │ │ │ ├── Canvas.js │ │ │ ├── Collection.js │ │ │ ├── CollectionEntry.js │ │ │ ├── CollectionEntryPreview.js │ │ │ ├── CollectionTypes.js │ │ │ ├── Color.js │ │ │ ├── ConsoleCommandResultMessage.js │ │ │ ├── ConsoleMessage.js │ │ │ ├── Cookie.js │ │ │ ├── CookieStorageObject.js │ │ │ ├── DOMBreakpoint.js │ │ │ ├── DOMNode.js │ │ │ ├── DOMNodeStyles.js │ │ │ ├── DOMSearchMatchObject.js │ │ │ ├── DOMStorageObject.js │ │ │ ├── DOMTree.js │ │ │ ├── DatabaseObject.js │ │ │ ├── DatabaseTableObject.js │ │ │ ├── DebuggerDashboard.js │ │ │ ├── DebuggerData.js │ │ │ ├── DefaultDashboard.js │ │ │ ├── EventBreakpoint.js │ │ │ ├── ExecutionContext.js │ │ │ ├── ExecutionContextList.js │ │ │ ├── FPSInstrument.js │ │ │ ├── Frame.js │ │ │ ├── GarbageCollection.js │ │ │ ├── Geometry.js │ │ │ ├── Gradient.js │ │ │ ├── HeapAllocationsInstrument.js │ │ │ ├── HeapAllocationsTimelineRecord.js │ │ │ ├── HeapSnapshotRootPath.js │ │ │ ├── IndexedDatabase.js │ │ │ ├── IndexedDatabaseObjectStore.js │ │ │ ├── IndexedDatabaseObjectStoreIndex.js │ │ │ ├── Instrument.js │ │ │ ├── IssueMessage.js │ │ │ ├── KeyboardShortcut.js │ │ │ ├── Layer.js │ │ │ ├── LayoutInstrument.js │ │ │ ├── LayoutTimelineRecord.js │ │ │ ├── LazySourceCodeLocation.js │ │ │ ├── LineWidget.js │ │ │ ├── LocalResource.js │ │ │ ├── LocalScript.js │ │ │ ├── LogObject.js │ │ │ ├── LoggingChannel.js │ │ │ ├── MediaInstrument.js │ │ │ ├── MediaTimelineRecord.js │ │ │ ├── MemoryCategory.js │ │ │ ├── MemoryInstrument.js │ │ │ ├── MemoryPressureEvent.js │ │ │ ├── MemoryTimeline.js │ │ │ ├── MemoryTimelineRecord.js │ │ │ ├── NativeFunctionParameters.js │ │ │ ├── NetworkInstrument.js │ │ │ ├── NetworkTimeline.js │ │ │ ├── ObjectPreview.js │ │ │ ├── Probe.js │ │ │ ├── ProbeSet.js │ │ │ ├── ProbeSetDataFrame.js │ │ │ ├── ProbeSetDataTable.js │ │ │ ├── Profile.js │ │ │ ├── ProfileNode.js │ │ │ ├── ProfileNodeCall.js │ │ │ ├── PropertyDescriptor.js │ │ │ ├── PropertyPath.js │ │ │ ├── PropertyPreview.js │ │ │ ├── Recording.js │ │ │ ├── RecordingAction.js │ │ │ ├── RecordingFrame.js │ │ │ ├── RecordingInitialStateAction.js │ │ │ ├── RecordingState.js │ │ │ ├── Redirect.js │ │ │ ├── RenderingFrameTimelineRecord.js │ │ │ ├── Resource.js │ │ │ ├── ResourceCollection.js │ │ │ ├── ResourceQueryMatch.js │ │ │ ├── ResourceQueryResult.js │ │ │ ├── ResourceTimelineRecord.js │ │ │ ├── ResourceTimingData.js │ │ │ ├── Revision.js │ │ │ ├── ScopeChainNode.js │ │ │ ├── Script.js │ │ │ ├── ScriptInstrument.js │ │ │ ├── ScriptSyntaxTree.js │ │ │ ├── ScriptTimelineRecord.js │ │ │ ├── ServerTimingEntry.js │ │ │ ├── ShaderProgram.js │ │ │ ├── SourceCode.js │ │ │ ├── SourceCodeLocation.js │ │ │ ├── SourceCodePosition.js │ │ │ ├── SourceCodeRevision.js │ │ │ ├── SourceCodeSearchMatchObject.js │ │ │ ├── SourceCodeTextRange.js │ │ │ ├── SourceCodeTimeline.js │ │ │ ├── SourceMap.js │ │ │ ├── SourceMapResource.js │ │ │ ├── StackTrace.js │ │ │ ├── StructureDescription.js │ │ │ ├── TextMarker.js │ │ │ ├── TextRange.js │ │ │ ├── Timeline.js │ │ │ ├── TimelineMarker.js │ │ │ ├── TimelineRange.js │ │ │ ├── TimelineRecord.js │ │ │ ├── TimelineRecording.js │ │ │ ├── TypeDescription.js │ │ │ ├── TypeSet.js │ │ │ ├── URLBreakpoint.js │ │ │ ├── WebSocketResource.js │ │ │ └── WrappedPromise.js │ │ ├── Protocol │ │ │ ├── ApplicationCacheObserver.js │ │ │ ├── CPUProfilerObserver.js │ │ │ ├── CSSObserver.js │ │ │ ├── CanvasObserver.js │ │ │ ├── Connection.js │ │ │ ├── ConsoleObserver.js │ │ │ ├── DOMObserver.js │ │ │ ├── DOMStorageObserver.js │ │ │ ├── DatabaseObserver.js │ │ │ ├── DebuggerObserver.js │ │ │ ├── DirectBackendTarget.js │ │ │ ├── HeapObserver.js │ │ │ ├── InspectorBackend.js │ │ │ ├── InspectorFrontendAPI.js │ │ │ ├── InspectorObserver.js │ │ │ ├── JavaScriptContextTarget.js │ │ │ ├── LayerTreeObserver.js │ │ │ ├── Legacy │ │ │ │ ├── 10.0 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 10.3 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 11.0 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 11.3 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 12.0 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 12.2 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 13.0 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 8.0 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ ├── 9.0 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ │ └── 9.3 │ │ │ │ │ └── InspectorBackendCommands.js │ │ │ ├── LoadInspectorBackendCommands.js │ │ │ ├── LoggingProtocolTracer.js │ │ │ ├── MemoryObserver.js │ │ │ ├── MessageDispatcher.js │ │ │ ├── MultiplexingBackendTarget.js │ │ │ ├── NetworkObserver.js │ │ │ ├── PageObserver.js │ │ │ ├── PageTarget.js │ │ │ ├── ProtocolTracer.js │ │ │ ├── RemoteObject.js │ │ │ ├── RuntimeObserver.js │ │ │ ├── ScriptProfilerObserver.js │ │ │ ├── Target.js │ │ │ ├── TargetObserver.js │ │ │ ├── TimelineObserver.js │ │ │ ├── WorkerObserver.js │ │ │ └── WorkerTarget.js │ │ ├── Proxies │ │ │ ├── FormatterWorkerProxy.js │ │ │ ├── HeapSnapshotDiffProxy.js │ │ │ ├── HeapSnapshotEdgeProxy.js │ │ │ ├── HeapSnapshotNodeProxy.js │ │ │ ├── HeapSnapshotProxy.js │ │ │ └── HeapSnapshotWorkerProxy.js │ │ ├── Test.html │ │ ├── Test │ │ │ ├── FrontendTestHarness.js │ │ │ ├── InspectorProtocol.js │ │ │ ├── ProtocolTestHarness.js │ │ │ ├── Test.js │ │ │ ├── TestAppController.js │ │ │ ├── TestHarness.js │ │ │ ├── TestStub.js │ │ │ ├── TestSuite.js │ │ │ └── TestUtilities.js │ │ ├── TestStub.html │ │ ├── Views │ │ │ ├── ActivateButtonNavigationItem.js │ │ │ ├── ActivateButtonToolbarItem.js │ │ │ ├── ApplicationCacheDetailsSidebarPanel.js │ │ │ ├── ApplicationCacheFrameContentView.css │ │ │ ├── ApplicationCacheFrameContentView.js │ │ │ ├── ApplicationCacheFrameTreeElement.js │ │ │ ├── ApplicationCacheManifestTreeElement.js │ │ │ ├── AreaChart.js │ │ │ ├── AuditNavigationSidebarPanel.css │ │ │ ├── AuditNavigationSidebarPanel.js │ │ │ ├── AuditTabContentView.js │ │ │ ├── AuditTestCaseContentView.css │ │ │ ├── AuditTestCaseContentView.js │ │ │ ├── AuditTestContentView.css │ │ │ ├── AuditTestContentView.js │ │ │ ├── AuditTestGroupContentView.css │ │ │ ├── AuditTestGroupContentView.js │ │ │ ├── AuditTreeElement.css │ │ │ ├── AuditTreeElement.js │ │ │ ├── BezierEditor.css │ │ │ ├── BezierEditor.js │ │ │ ├── BoxModelDetailsSectionRow.css │ │ │ ├── BoxModelDetailsSectionRow.js │ │ │ ├── BreakpointActionView.css │ │ │ ├── BreakpointActionView.js │ │ │ ├── BreakpointPopoverController.css │ │ │ ├── BreakpointTreeElement.css │ │ │ ├── BreakpointTreeElement.js │ │ │ ├── ButtonNavigationItem.css │ │ │ ├── ButtonNavigationItem.js │ │ │ ├── ButtonToolbarItem.css │ │ │ ├── ButtonToolbarItem.js │ │ │ ├── CPUTimelineOverviewGraph.css │ │ │ ├── CPUTimelineOverviewGraph.js │ │ │ ├── CPUTimelineView.css │ │ │ ├── CPUTimelineView.js │ │ │ ├── CPUUsageCombinedView.css │ │ │ ├── CPUUsageCombinedView.js │ │ │ ├── CPUUsageView.css │ │ │ ├── CPUUsageView.js │ │ │ ├── CSSStyleSheetTreeElement.js │ │ │ ├── CallFrameIcons.css │ │ │ ├── CallFrameTreeElement.css │ │ │ ├── CallFrameTreeElement.js │ │ │ ├── CallFrameView.css │ │ │ ├── CallFrameView.js │ │ │ ├── CanvasContentView.css │ │ │ ├── CanvasContentView.js │ │ │ ├── CanvasDetailsSidebarPanel.css │ │ │ ├── CanvasDetailsSidebarPanel.js │ │ │ ├── CanvasOverviewContentView.css │ │ │ ├── CanvasOverviewContentView.js │ │ │ ├── CanvasSidebarPanel.css │ │ │ ├── CanvasSidebarPanel.js │ │ │ ├── CanvasTabContentView.css │ │ │ ├── CanvasTabContentView.js │ │ │ ├── CanvasTreeElement.js │ │ │ ├── ChangesDetailsSidebarPanel.css │ │ │ ├── ChangesDetailsSidebarPanel.js │ │ │ ├── ChartDetailsSectionRow.css │ │ │ ├── ChartDetailsSectionRow.js │ │ │ ├── CheckboxNavigationItem.css │ │ │ ├── CheckboxNavigationItem.js │ │ │ ├── CircleChart.css │ │ │ ├── CircleChart.js │ │ │ ├── ClusterContentView.css │ │ │ ├── ClusterContentView.js │ │ │ ├── CodeMirrorAdditions.js │ │ │ ├── CodeMirrorEditor.js │ │ │ ├── CodeMirrorFormatters.js │ │ │ ├── CodeMirrorOverrides.css │ │ │ ├── CodeMirrorRegexMode.css │ │ │ ├── CodeMirrorRegexMode.js │ │ │ ├── CodeMirrorTextMarkers.js │ │ │ ├── CollectionContentView.css │ │ │ ├── CollectionContentView.js │ │ │ ├── ColorPicker.css │ │ │ ├── ColorPicker.js │ │ │ ├── ColorWheel.css │ │ │ ├── ColorWheel.js │ │ │ ├── ColumnChart.js │ │ │ ├── CompletionSuggestionsView.css │ │ │ ├── CompletionSuggestionsView.js │ │ │ ├── ComputedStyleDetailsPanel.css │ │ │ ├── ComputedStyleDetailsPanel.js │ │ │ ├── ComputedStyleDetailsSidebarPanel.js │ │ │ ├── ComputedStyleSection.css │ │ │ ├── ComputedStyleSection.js │ │ │ ├── ConsoleCommandView.js │ │ │ ├── ConsoleDrawer.css │ │ │ ├── ConsoleDrawer.js │ │ │ ├── ConsoleGroup.js │ │ │ ├── ConsoleMessageView.css │ │ │ ├── ConsoleMessageView.js │ │ │ ├── ConsolePrompt.css │ │ │ ├── ConsolePrompt.js │ │ │ ├── ConsoleSession.js │ │ │ ├── ConsoleTabContentView.js │ │ │ ├── ContentBrowser.css │ │ │ ├── ContentBrowser.js │ │ │ ├── ContentBrowserTabContentView.css │ │ │ ├── ContentBrowserTabContentView.js │ │ │ ├── ContentView.css │ │ │ ├── ContentView.js │ │ │ ├── ContentViewContainer.css │ │ │ ├── ContentViewContainer.js │ │ │ ├── ContextMenu.js │ │ │ ├── ContextMenuUtilities.js │ │ │ ├── ControlToolbarItem.css │ │ │ ├── ControlToolbarItem.js │ │ │ ├── CookieStorageContentView.css │ │ │ ├── CookieStorageContentView.js │ │ │ ├── CookieStorageTreeElement.js │ │ │ ├── DOMBreakpointTreeElement.css │ │ │ ├── DOMBreakpointTreeElement.js │ │ │ ├── DOMDetailsSidebarPanel.js │ │ │ ├── DOMEventsBreakdownView.css │ │ │ ├── DOMEventsBreakdownView.js │ │ │ ├── DOMNodeDetailsSidebarPanel.css │ │ │ ├── DOMNodeDetailsSidebarPanel.js │ │ │ ├── DOMNodeEventsContentView.css │ │ │ ├── DOMNodeEventsContentView.js │ │ │ ├── DOMNodeTreeElement.css │ │ │ ├── DOMNodeTreeElement.js │ │ │ ├── DOMStorageContentView.css │ │ │ ├── DOMStorageContentView.js │ │ │ ├── DOMStorageTreeElement.js │ │ │ ├── DOMTreeContentView.css │ │ │ ├── DOMTreeContentView.js │ │ │ ├── DOMTreeElement.js │ │ │ ├── DOMTreeElementPathComponent.js │ │ │ ├── DOMTreeOutline.css │ │ │ ├── DOMTreeOutline.js │ │ │ ├── DOMTreeUpdater.js │ │ │ ├── DashboardContainerView.css │ │ │ ├── DashboardContainerView.js │ │ │ ├── DashboardView.js │ │ │ ├── DataGrid.css │ │ │ ├── DataGrid.js │ │ │ ├── DataGridNode.js │ │ │ ├── DatabaseContentView.css │ │ │ ├── DatabaseContentView.js │ │ │ ├── DatabaseHostTreeElement.js │ │ │ ├── DatabaseTableContentView.css │ │ │ ├── DatabaseTableContentView.js │ │ │ ├── DatabaseTableTreeElement.js │ │ │ ├── DatabaseTreeElement.js │ │ │ ├── DatabaseUserQueryErrorView.js │ │ │ ├── DatabaseUserQuerySuccessView.js │ │ │ ├── DatabaseUserQueryViewBase.js │ │ │ ├── DebuggerDashboardView.css │ │ │ ├── DebuggerDashboardView.js │ │ │ ├── DebuggerSidebarPanel.css │ │ │ ├── DebuggerSidebarPanel.js │ │ │ ├── DebuggerTabContentView.js │ │ │ ├── DefaultDashboardView.css │ │ │ ├── DefaultDashboardView.js │ │ │ ├── DetailsSection.css │ │ │ ├── DetailsSection.js │ │ │ ├── DetailsSectionDataGridRow.js │ │ │ ├── DetailsSectionGroup.js │ │ │ ├── DetailsSectionRow.js │ │ │ ├── DetailsSectionSimpleRow.js │ │ │ ├── DetailsSectionTextRow.js │ │ │ ├── DetailsSidebarPanel.js │ │ │ ├── Dialog.js │ │ │ ├── DividerNavigationItem.css │ │ │ ├── DividerNavigationItem.js │ │ │ ├── EditableDataGridNode.js │ │ │ ├── Editing.css │ │ │ ├── EditingSupport.js │ │ │ ├── ElementsTabContentView.js │ │ │ ├── ErrorObjectView.css │ │ │ ├── ErrorObjectView.js │ │ │ ├── EventBreakpointPopover.css │ │ │ ├── EventBreakpointPopover.js │ │ │ ├── EventBreakpointTreeElement.css │ │ │ ├── EventBreakpointTreeElement.js │ │ │ ├── EventListenerSectionGroup.css │ │ │ ├── EventListenerSectionGroup.js │ │ │ ├── ExpandableView.js │ │ │ ├── FilterBar.css │ │ │ ├── FilterBar.js │ │ │ ├── FilterBarButton.js │ │ │ ├── FilterBarNavigationItem.js │ │ │ ├── FindBanner.css │ │ │ ├── FindBanner.js │ │ │ ├── FlexibleSpaceNavigationItem.css │ │ │ ├── FlexibleSpaceNavigationItem.js │ │ │ ├── FolderIcon.css │ │ │ ├── FolderTreeElement.js │ │ │ ├── FolderizedTreeElement.js │ │ │ ├── FontResourceContentView.css │ │ │ ├── FontResourceContentView.js │ │ │ ├── FormattedValue.css │ │ │ ├── FormattedValue.js │ │ │ ├── FrameDOMTreeContentView.js │ │ │ ├── FrameTreeElement.js │ │ │ ├── GaugeChart.css │ │ │ ├── GaugeChart.js │ │ │ ├── GeneralStyleDetailsSidebarPanel.css │ │ │ ├── GeneralStyleDetailsSidebarPanel.js │ │ │ ├── GeneralTabBarItem.js │ │ │ ├── GeneralTreeElement.js │ │ │ ├── GeneralTreeElementPathComponent.js │ │ │ ├── GenericResourceContentView.js │ │ │ ├── GoToLineDialog.css │ │ │ ├── GoToLineDialog.js │ │ │ ├── GradientEditor.css │ │ │ ├── GradientEditor.js │ │ │ ├── GradientSlider.css │ │ │ ├── GradientSlider.js │ │ │ ├── GroupNavigationItem.js │ │ │ ├── HeapAllocationsTimelineDataGridNode.js │ │ │ ├── HeapAllocationsTimelineDataGridNodePathComponent.js │ │ │ ├── HeapAllocationsTimelineOverviewGraph.css │ │ │ ├── HeapAllocationsTimelineOverviewGraph.js │ │ │ ├── HeapAllocationsTimelineView.css │ │ │ ├── HeapAllocationsTimelineView.js │ │ │ ├── HeapSnapshotClassDataGridNode.js │ │ │ ├── HeapSnapshotClusterContentView.js │ │ │ ├── HeapSnapshotContentView.js │ │ │ ├── HeapSnapshotDataGridTree.js │ │ │ ├── HeapSnapshotInstanceDataGridNode.js │ │ │ ├── HeapSnapshotInstanceFetchMoreDataGridNode.js │ │ │ ├── HeapSnapshotInstancesContentView.css │ │ │ ├── HierarchicalPathComponent.css │ │ │ ├── HierarchicalPathComponent.js │ │ │ ├── HierarchicalPathNavigationItem.js │ │ │ ├── HoverMenu.css │ │ │ ├── HoverMenu.js │ │ │ ├── IdleTreeElement.css │ │ │ ├── IdleTreeElement.js │ │ │ ├── ImageResourceContentView.css │ │ │ ├── ImageResourceContentView.js │ │ │ ├── IndeterminateProgressSpinner.css │ │ │ ├── IndeterminateProgressSpinner.js │ │ │ ├── IndexedDatabaseContentView.css │ │ │ ├── IndexedDatabaseContentView.js │ │ │ ├── IndexedDatabaseDetailsSidebarPanel.js │ │ │ ├── IndexedDatabaseEntryDataGridNode.js │ │ │ ├── IndexedDatabaseHostTreeElement.js │ │ │ ├── IndexedDatabaseObjectStoreContentView.css │ │ │ ├── IndexedDatabaseObjectStoreContentView.js │ │ │ ├── IndexedDatabaseObjectStoreIndexTreeElement.js │ │ │ ├── IndexedDatabaseObjectStoreTreeElement.js │ │ │ ├── IndexedDatabaseTreeElement.js │ │ │ ├── InlineSwatch.css │ │ │ ├── InlineSwatch.js │ │ │ ├── InputPopover.css │ │ │ ├── InputPopover.js │ │ │ ├── IssueTreeElement.css │ │ │ ├── IssueTreeElement.js │ │ │ ├── JSONResourceContentView.css │ │ │ ├── JSONResourceContentView.js │ │ │ ├── LayerDetailsSidebarPanel.css │ │ │ ├── LayerDetailsSidebarPanel.js │ │ │ ├── LayerTreeDataGridNode.js │ │ │ ├── LayerTreeDetailsSidebarPanel.css │ │ │ ├── LayerTreeDetailsSidebarPanel.js │ │ │ ├── Layers3DContentView.css │ │ │ ├── Layers3DContentView.js │ │ │ ├── LayersTabContentView.js │ │ │ ├── LayoutTimelineDataGrid.js │ │ │ ├── LayoutTimelineDataGridNode.js │ │ │ ├── LayoutTimelineOverviewGraph.css │ │ │ ├── LayoutTimelineOverviewGraph.js │ │ │ ├── LayoutTimelineView.css │ │ │ ├── LayoutTimelineView.js │ │ │ ├── LegacyTabBar.js │ │ │ ├── LogContentView.css │ │ │ ├── LogContentView.js │ │ │ ├── LogIcon.css │ │ │ ├── Main.css │ │ │ ├── MediaTimelineDataGridNode.js │ │ │ ├── MediaTimelineOverviewGraph.css │ │ │ ├── MediaTimelineOverviewGraph.js │ │ │ ├── MediaTimelineView.css │ │ │ ├── MediaTimelineView.js │ │ │ ├── MemoryCategoryView.css │ │ │ ├── MemoryCategoryView.js │ │ │ ├── MemoryTimelineOverviewGraph.css │ │ │ ├── MemoryTimelineOverviewGraph.js │ │ │ ├── MemoryTimelineView.css │ │ │ ├── MemoryTimelineView.js │ │ │ ├── MultipleScopeBarItem.js │ │ │ ├── NavigationBar.css │ │ │ ├── NavigationBar.js │ │ │ ├── NavigationItem.js │ │ │ ├── NavigationSidebarPanel.css │ │ │ ├── NavigationSidebarPanel.js │ │ │ ├── NetworkDOMNodeDetailView.js │ │ │ ├── NetworkDetailView.css │ │ │ ├── NetworkDetailView.js │ │ │ ├── NetworkResourceDetailView.css │ │ │ ├── NetworkResourceDetailView.js │ │ │ ├── NetworkTabContentView.css │ │ │ ├── NetworkTabContentView.js │ │ │ ├── NetworkTableContentView.css │ │ │ ├── NetworkTableContentView.js │ │ │ ├── NetworkTimelineOverviewGraph.css │ │ │ ├── NetworkTimelineOverviewGraph.js │ │ │ ├── NetworkTimelineView.css │ │ │ ├── NetworkTimelineView.js │ │ │ ├── NewTabContentView.css │ │ │ ├── NewTabContentView.js │ │ │ ├── ObjectPreviewView.css │ │ │ ├── ObjectPreviewView.js │ │ │ ├── ObjectPropertiesDetailSectionRow.js │ │ │ ├── ObjectTreeArrayIndexTreeElement.css │ │ │ ├── ObjectTreeArrayIndexTreeElement.js │ │ │ ├── ObjectTreeBaseTreeElement.js │ │ │ ├── ObjectTreeMapEntryTreeElement.css │ │ │ ├── ObjectTreeMapEntryTreeElement.js │ │ │ ├── ObjectTreePropertyTreeElement.css │ │ │ ├── ObjectTreePropertyTreeElement.js │ │ │ ├── ObjectTreeSetIndexTreeElement.js │ │ │ ├── ObjectTreeView.css │ │ │ ├── ObjectTreeView.js │ │ │ ├── OpenResourceDialog.css │ │ │ ├── OpenResourceDialog.js │ │ │ ├── OverviewTimelineView.css │ │ │ ├── OverviewTimelineView.js │ │ │ ├── PathComponentIcons.css │ │ │ ├── PinnedTabBarItem.js │ │ │ ├── Popover.css │ │ │ ├── Popover.js │ │ │ ├── ProbeDetailsSidebarPanel.css │ │ │ ├── ProbeDetailsSidebarPanel.js │ │ │ ├── ProbeSetDataGrid.css │ │ │ ├── ProbeSetDataGrid.js │ │ │ ├── ProbeSetDataGridNode.js │ │ │ ├── ProbeSetDetailsSection.js │ │ │ ├── ProfileDataGridNode.js │ │ │ ├── ProfileDataGridTree.js │ │ │ ├── ProfileNodeDataGridNode.js │ │ │ ├── ProfileNodeTreeElement.js │ │ │ ├── ProfileView.css │ │ │ ├── ProfileView.js │ │ │ ├── ProgressView.css │ │ │ ├── ProgressView.js │ │ │ ├── QuickConsole.css │ │ │ ├── QuickConsole.js │ │ │ ├── QuickConsoleNavigationBar.js │ │ │ ├── RadioButtonNavigationItem.css │ │ │ ├── RadioButtonNavigationItem.js │ │ │ ├── RangeChart.js │ │ │ ├── RecordingActionTreeElement.css │ │ │ ├── RecordingActionTreeElement.js │ │ │ ├── RecordingContentView.css │ │ │ ├── RecordingContentView.js │ │ │ ├── RecordingStateDetailsSidebarPanel.css │ │ │ ├── RecordingStateDetailsSidebarPanel.js │ │ │ ├── RecordingTraceDetailsSidebarPanel.css │ │ │ ├── RecordingTraceDetailsSidebarPanel.js │ │ │ ├── RenderingFrameTimelineDataGridNode.js │ │ │ ├── RenderingFrameTimelineOverviewGraph.css │ │ │ ├── RenderingFrameTimelineOverviewGraph.js │ │ │ ├── RenderingFrameTimelineView.css │ │ │ ├── RenderingFrameTimelineView.js │ │ │ ├── Resizer.css │ │ │ ├── Resizer.js │ │ │ ├── ResourceClusterContentView.js │ │ │ ├── ResourceCollectionContentView.css │ │ │ ├── ResourceCollectionContentView.js │ │ │ ├── ResourceContentView.js │ │ │ ├── ResourceCookiesContentView.css │ │ │ ├── ResourceCookiesContentView.js │ │ │ ├── ResourceDetailsSection.css │ │ │ ├── ResourceDetailsSection.js │ │ │ ├── ResourceDetailsSidebarPanel.css │ │ │ ├── ResourceDetailsSidebarPanel.js │ │ │ ├── ResourceHeadersContentView.css │ │ │ ├── ResourceHeadersContentView.js │ │ │ ├── ResourceIcons.css │ │ │ ├── ResourceSecurityContentView.css │ │ │ ├── ResourceSecurityContentView.js │ │ │ ├── ResourceSidebarPanel.css │ │ │ ├── ResourceSidebarPanel.js │ │ │ ├── ResourceSizesContentView.css │ │ │ ├── ResourceSizesContentView.js │ │ │ ├── ResourceTimelineDataGridNode.css │ │ │ ├── ResourceTimelineDataGridNode.js │ │ │ ├── ResourceTimingBreakdownView.css │ │ │ ├── ResourceTimingBreakdownView.js │ │ │ ├── ResourceTimingContentView.js │ │ │ ├── ResourceTimingPopoverDataGridNode.js │ │ │ ├── ResourceTreeElement.css │ │ │ ├── ResourceTreeElement.js │ │ │ ├── ResourcesTabContentView.js │ │ │ ├── RulesStyleDetailsSidebarPanel.js │ │ │ ├── SVGImageResourceClusterContentView.js │ │ │ ├── ScopeBar.css │ │ │ ├── ScopeBar.js │ │ │ ├── ScopeBarItem.js │ │ │ ├── ScopeChainDetailsSidebarPanel.css │ │ │ ├── ScopeChainDetailsSidebarPanel.js │ │ │ ├── ScopeRadioButtonNavigationItem.css │ │ │ ├── ScopeRadioButtonNavigationItem.js │ │ │ ├── ScriptClusterTimelineView.js │ │ │ ├── ScriptContentView.css │ │ │ ├── ScriptContentView.js │ │ │ ├── ScriptDetailsTimelineView.css │ │ │ ├── ScriptDetailsTimelineView.js │ │ │ ├── ScriptProfileTimelineView.js │ │ │ ├── ScriptTimelineDataGrid.js │ │ │ ├── ScriptTimelineDataGridNode.js │ │ │ ├── ScriptTimelineOverviewGraph.css │ │ │ ├── ScriptTimelineOverviewGraph.js │ │ │ ├── ScriptTreeElement.js │ │ │ ├── ScrubberNavigationItem.css │ │ │ ├── ScrubberNavigationItem.js │ │ │ ├── SearchBar.css │ │ │ ├── SearchBar.js │ │ │ ├── SearchIcons.css │ │ │ ├── SearchResultTreeElement.js │ │ │ ├── SearchSidebarPanel.css │ │ │ ├── SearchSidebarPanel.js │ │ │ ├── SearchTabContentView.js │ │ │ ├── SettingEditor.js │ │ │ ├── SettingsGroup.js │ │ │ ├── SettingsTabContentView.css │ │ │ ├── SettingsTabContentView.js │ │ │ ├── SettingsView.js │ │ │ ├── ShaderProgramContentView.css │ │ │ ├── ShaderProgramContentView.js │ │ │ ├── ShaderProgramTreeElement.css │ │ │ ├── ShaderProgramTreeElement.js │ │ │ ├── Sidebar.css │ │ │ ├── Sidebar.js │ │ │ ├── SidebarNavigationBar.js │ │ │ ├── SidebarPanel.css │ │ │ ├── SidebarPanel.js │ │ │ ├── Slider.css │ │ │ ├── Slider.js │ │ │ ├── SoftContextMenu.css │ │ │ ├── SoftContextMenu.js │ │ │ ├── SourceCodeTextEditor.css │ │ │ ├── SourceCodeTextEditor.js │ │ │ ├── SourceCodeTimelineTimelineDataGridNode.js │ │ │ ├── SourceCodeTreeElement.js │ │ │ ├── SourceMapResourceTreeElement.js │ │ │ ├── SourcesNavigationSidebarPanel.css │ │ │ ├── SourcesNavigationSidebarPanel.js │ │ │ ├── SourcesTabContentView.js │ │ │ ├── SpanningDataGridNode.js │ │ │ ├── SpreadsheetCSSStyleDeclarationEditor.css │ │ │ ├── SpreadsheetCSSStyleDeclarationEditor.js │ │ │ ├── SpreadsheetCSSStyleDeclarationSection.css │ │ │ ├── SpreadsheetCSSStyleDeclarationSection.js │ │ │ ├── SpreadsheetRulesStyleDetailsPanel.css │ │ │ ├── SpreadsheetRulesStyleDetailsPanel.js │ │ │ ├── SpreadsheetSelectorField.js │ │ │ ├── SpreadsheetStyleProperty.js │ │ │ ├── SpreadsheetTextField.js │ │ │ ├── SpringEditor.css │ │ │ ├── SpringEditor.js │ │ │ ├── StackTraceView.css │ │ │ ├── StackTraceView.js │ │ │ ├── StackedAreaChart.js │ │ │ ├── StackedColumnChart.js │ │ │ ├── StorageIcons.css │ │ │ ├── StorageSidebarPanel.css │ │ │ ├── StorageSidebarPanel.js │ │ │ ├── StorageTabContentView.js │ │ │ ├── StorageTreeElement.js │ │ │ ├── StyleDetailsPanel.js │ │ │ ├── StyleOriginView.js │ │ │ ├── SyntaxHighlightingDefaultTheme.css │ │ │ ├── SyntaxHighlightingSupport.js │ │ │ ├── TabBar.css │ │ │ ├── TabBar.js │ │ │ ├── TabBarItem.js │ │ │ ├── TabBrowser.css │ │ │ ├── TabBrowser.js │ │ │ ├── TabContentView.js │ │ │ ├── Table.css │ │ │ ├── Table.js │ │ │ ├── TableColumn.js │ │ │ ├── TextContentView.css │ │ │ ├── TextContentView.js │ │ │ ├── TextEditor.css │ │ │ ├── TextEditor.js │ │ │ ├── TextNavigationItem.css │ │ │ ├── TextNavigationItem.js │ │ │ ├── TextResourceContentView.css │ │ │ ├── TextResourceContentView.js │ │ │ ├── TextToggleButtonNavigationItem.css │ │ │ ├── TextToggleButtonNavigationItem.js │ │ │ ├── ThreadTreeElement.css │ │ │ ├── ThreadTreeElement.js │ │ │ ├── TimelineDataGrid.css │ │ │ ├── TimelineDataGrid.js │ │ │ ├── TimelineDataGridNode.js │ │ │ ├── TimelineDataGridNodePathComponent.js │ │ │ ├── TimelineIcons.css │ │ │ ├── TimelineOverview.css │ │ │ ├── TimelineOverview.js │ │ │ ├── TimelineOverviewGraph.js │ │ │ ├── TimelineRecordBar.css │ │ │ ├── TimelineRecordBar.js │ │ │ ├── TimelineRecordFrame.css │ │ │ ├── TimelineRecordFrame.js │ │ │ ├── TimelineRecordTreeElement.js │ │ │ ├── TimelineRecordingContentView.css │ │ │ ├── TimelineRecordingContentView.js │ │ │ ├── TimelineRecordingProgressView.js │ │ │ ├── TimelineRuler.css │ │ │ ├── TimelineRuler.js │ │ │ ├── TimelineTabContentView.css │ │ │ ├── TimelineTabContentView.js │ │ │ ├── TimelineTreeElement.js │ │ │ ├── TimelineView.css │ │ │ ├── TimelineView.js │ │ │ ├── TitleView.css │ │ │ ├── TitleView.js │ │ │ ├── ToggleButtonNavigationItem.js │ │ │ ├── Toolbar.css │ │ │ ├── Toolbar.js │ │ │ ├── TreeElement.js │ │ │ ├── TreeElementStatusButton.css │ │ │ ├── TreeElementStatusButton.js │ │ │ ├── TreeOutline.css │ │ │ ├── TreeOutline.js │ │ │ ├── TreeOutlineGroup.js │ │ │ ├── TypeTokenView.css │ │ │ ├── TypeTokenView.js │ │ │ ├── TypeTreeElement.css │ │ │ ├── TypeTreeElement.js │ │ │ ├── TypeTreeView.css │ │ │ ├── TypeTreeView.js │ │ │ ├── URLBreakpointPopover.css │ │ │ ├── URLBreakpointPopover.js │ │ │ ├── URLBreakpointTreeElement.css │ │ │ ├── URLBreakpointTreeElement.js │ │ │ ├── Variables.css │ │ │ ├── View.js │ │ │ ├── WebSocketContentView.css │ │ │ ├── WebSocketContentView.js │ │ │ ├── WebSocketDataGridNode.js │ │ │ ├── WebSocketResourceTreeElement.js │ │ │ └── WorkerTreeElement.js │ │ └── Workers │ │ │ ├── Formatter │ │ │ ├── CSSFormatter.js │ │ │ ├── ESTreeWalker.js │ │ │ ├── EsprimaFormatter.js │ │ │ ├── FormatterContentBuilder.js │ │ │ ├── FormatterUtilities.js │ │ │ └── FormatterWorker.js │ │ │ └── HeapSnapshot │ │ │ ├── HeapSnapshot.js │ │ │ └── HeapSnapshotWorker.js │ ├── Versions │ │ ├── Inspector-iOS-10.0.json │ │ ├── Inspector-iOS-10.3.json │ │ ├── Inspector-iOS-11.0.json │ │ ├── Inspector-iOS-11.3.json │ │ ├── Inspector-iOS-12.0.json │ │ ├── Inspector-iOS-12.2.json │ │ ├── Inspector-iOS-13.0.json │ │ ├── Inspector-iOS-8.0.json │ │ ├── Inspector-iOS-9.0.json │ │ └── Inspector-iOS-9.3.json │ ├── WebInspectorUI.c │ ├── WebInspectorUI.vcxproj │ │ ├── WebInspectorUI.make │ │ ├── WebInspectorUI.proj │ │ ├── WebInspectorUI.vcxproj │ │ ├── WebInspectorUI.vcxproj.filters │ │ └── build-webinspectorui.pl │ └── WebInspectorUI.xcodeproj │ │ └── project.pbxproj ├── WebKit │ ├── Configurations │ │ ├── All.xcconfig │ │ ├── Base.xcconfig │ │ ├── BaseTarget.xcconfig │ │ ├── BaseXPCService.xcconfig │ │ ├── DebugRelease.xcconfig │ │ ├── FeatureDefines.xcconfig │ │ ├── Network-iOS.entitlements │ │ ├── Network-macCatalyst.entitlements │ │ ├── NetworkService.xcconfig │ │ ├── PluginProcessShim.xcconfig │ │ ├── PluginService.64.xcconfig │ │ ├── PluginService.entitlements │ │ ├── SDKVariant.xcconfig │ │ ├── SandboxProfiles.xcconfig │ │ ├── SecItemShim.xcconfig │ │ ├── Shim.xcconfig │ │ ├── Version.xcconfig │ │ ├── WebContent-iOS.entitlements │ │ ├── WebContent-macCatalyst.entitlements │ │ ├── WebContentService.Development.xcconfig │ │ ├── WebContentService.xcconfig │ │ ├── WebKit.xcconfig │ │ └── WebKitTargetConditionals.xcconfig │ └── Scripts │ │ ├── GeneratePreferences.rb │ │ ├── Makefile │ │ ├── PreferencesTemplates │ │ ├── WebPageUpdatePreferences.cpp.erb │ │ ├── WebPreferencesDefinitions.h.erb │ │ ├── WebPreferencesExperimentalFeatures.cpp.erb │ │ ├── WebPreferencesInternalDebugFeatures.cpp.erb │ │ ├── WebPreferencesKeys.cpp.erb │ │ ├── WebPreferencesKeys.h.erb │ │ └── WebPreferencesStoreDefaultsMap.cpp.erb │ │ ├── check-xcfilelists.sh │ │ ├── copy-webcontent-resources-to-private-headers.sh │ │ ├── generate-derived-sources.sh │ │ ├── generate-forwarding-headers.pl │ │ ├── generate-https-upgrade-database.sh │ │ ├── generate-message-receiver.py │ │ ├── generate-messages-header.py │ │ ├── generate-unified-sources.sh │ │ ├── postprocess-header-rule │ │ ├── process-entitlements.sh │ │ └── webkit │ │ ├── LegacyMessageReceiver-expected.cpp │ │ ├── LegacyMessages-expected.h │ │ ├── MessageReceiver-expected.cpp │ │ ├── MessageReceiverSuperclass-expected.cpp │ │ ├── Messages-expected.h │ │ ├── MessagesSuperclass-expected.h │ │ ├── __init__.py │ │ ├── messages.py │ │ ├── messages_unittest.py │ │ ├── model.py │ │ ├── parser.py │ │ ├── test-legacy-messages.in │ │ ├── test-messages.in │ │ └── test-superclass-messages.in ├── bmalloc │ ├── CMakeLists.txt │ ├── Configurations │ │ ├── Base.xcconfig │ │ ├── DebugRelease.xcconfig │ │ ├── SDKVariant.xcconfig │ │ ├── bmalloc.xcconfig │ │ └── mbmalloc.xcconfig │ ├── Makefile │ ├── PlatformMac.cmake │ ├── bmalloc.xcodeproj │ │ └── project.pbxproj │ └── bmalloc │ │ ├── Algorithm.h │ │ ├── AllIsoHeaps.cpp │ │ ├── AllIsoHeaps.h │ │ ├── AllIsoHeapsInlines.h │ │ ├── Allocator.cpp │ │ ├── Allocator.h │ │ ├── AvailableMemory.cpp │ │ ├── AvailableMemory.h │ │ ├── BAssert.h │ │ ├── BCompiler.h │ │ ├── BExport.h │ │ ├── BInline.h │ │ ├── BMalloced.h │ │ ├── BPlatform.h │ │ ├── BVMTags.h │ │ ├── Bits.h │ │ ├── BulkDecommit.h │ │ ├── BumpAllocator.h │ │ ├── BumpRange.h │ │ ├── Cache.cpp │ │ ├── Cache.h │ │ ├── Chunk.h │ │ ├── CryptoRandom.cpp │ │ ├── CryptoRandom.h │ │ ├── Deallocator.cpp │ │ ├── Deallocator.h │ │ ├── DebugHeap.cpp │ │ ├── DebugHeap.h │ │ ├── DeferredDecommit.h │ │ ├── DeferredDecommitInlines.h │ │ ├── DeferredTrigger.h │ │ ├── DeferredTriggerInlines.h │ │ ├── EligibilityResult.h │ │ ├── EligibilityResultInlines.h │ │ ├── Environment.cpp │ │ ├── Environment.h │ │ ├── FixedVector.h │ │ ├── FreeList.cpp │ │ ├── FreeList.h │ │ ├── FreeListInlines.h │ │ ├── Gigacage.cpp │ │ ├── Gigacage.h │ │ ├── Heap.cpp │ │ ├── Heap.h │ │ ├── HeapKind.cpp │ │ ├── HeapKind.h │ │ ├── IsoAllocator.h │ │ ├── IsoAllocatorInlines.h │ │ ├── IsoConfig.h │ │ ├── IsoDeallocator.h │ │ ├── IsoDeallocatorInlines.h │ │ ├── IsoDirectory.h │ │ ├── IsoDirectoryInlines.h │ │ ├── IsoDirectoryPage.h │ │ ├── IsoDirectoryPageInlines.h │ │ ├── IsoHeap.h │ │ ├── IsoHeapImpl.cpp │ │ ├── IsoHeapImpl.h │ │ ├── IsoHeapImplInlines.h │ │ ├── IsoHeapInlines.h │ │ ├── IsoPage.cpp │ │ ├── IsoPage.h │ │ ├── IsoPageInlines.h │ │ ├── IsoPageTrigger.h │ │ ├── IsoSharedConfig.h │ │ ├── IsoSharedHeap.cpp │ │ ├── IsoSharedHeap.h │ │ ├── IsoSharedHeapInlines.h │ │ ├── IsoSharedPage.cpp │ │ ├── IsoSharedPage.h │ │ ├── IsoSharedPageInlines.h │ │ ├── IsoTLS.cpp │ │ ├── IsoTLS.h │ │ ├── IsoTLSAllocatorEntry.h │ │ ├── IsoTLSAllocatorEntryInlines.h │ │ ├── IsoTLSDeallocatorEntry.h │ │ ├── IsoTLSDeallocatorEntryInlines.h │ │ ├── IsoTLSEntry.cpp │ │ ├── IsoTLSEntry.h │ │ ├── IsoTLSEntryInlines.h │ │ ├── IsoTLSInlines.h │ │ ├── IsoTLSLayout.cpp │ │ ├── IsoTLSLayout.h │ │ ├── LargeMap.cpp │ │ ├── LargeMap.h │ │ ├── LargeRange.h │ │ ├── LineMetadata.h │ │ ├── List.h │ │ ├── Logging.cpp │ │ ├── Logging.h │ │ ├── Map.h │ │ ├── Mutex.cpp │ │ ├── Mutex.h │ │ ├── Object.h │ │ ├── ObjectType.cpp │ │ ├── ObjectType.h │ │ ├── PerHeapKind.h │ │ ├── PerProcess.cpp │ │ ├── PerProcess.h │ │ ├── PerThread.cpp │ │ ├── PerThread.h │ │ ├── PhysicalPageMap.h │ │ ├── ProcessCheck.h │ │ ├── ProcessCheck.mm │ │ ├── Range.h │ │ ├── Scavenger.cpp │ │ ├── Scavenger.h │ │ ├── ScopeExit.h │ │ ├── Sizes.h │ │ ├── SmallLine.h │ │ ├── SmallPage.h │ │ ├── StaticPerProcess.h │ │ ├── StdLibExtras.h │ │ ├── Syscall.h │ │ ├── VMAllocate.h │ │ ├── VMHeap.cpp │ │ ├── VMHeap.h │ │ ├── Vector.h │ │ ├── Zone.cpp │ │ ├── Zone.h │ │ ├── bmalloc.cpp │ │ ├── bmalloc.h │ │ ├── darwin │ │ ├── BSoftLinking.h │ │ └── MemoryStatusSPI.h │ │ └── mbmalloc.cpp ├── cmake │ ├── BubblewrapSandboxChecks.cmake │ ├── CrossLinuxX64Toolchain.cmake │ ├── DetectSSE2.cmake │ ├── FindATK.cmake │ ├── FindATKBridge.cmake │ ├── FindATSPI.cmake │ ├── FindCairo.cmake │ ├── FindCairoGL.cmake │ ├── FindEGL.cmake │ ├── FindEnchant.cmake │ ├── FindFontconfig.cmake │ ├── FindGDK3.cmake │ ├── FindGLIB.cmake │ ├── FindGObjectIntrospection.cmake │ ├── FindGStreamer.cmake │ ├── FindGTK3.cmake │ ├── FindGTKUnixPrint.cmake │ ├── FindGperf.cmake │ ├── FindHarfBuzz.cmake │ ├── FindHyphen.cmake │ ├── FindLibEpoxy.cmake │ ├── FindLibGcrypt.cmake │ ├── FindLibNotify.cmake │ ├── FindLibPSL.cmake │ ├── FindLibSoup.cmake │ ├── FindLibseccomp.cmake │ ├── FindLibsecret.cmake │ ├── FindLibtasn1.cmake │ ├── FindLibxkbcommon.cmake │ ├── FindNghttp2.cmake │ ├── FindOpenGL.cmake │ ├── FindOpenGLES2.cmake │ ├── FindPerlModules.cmake │ ├── FindPixman.cmake │ ├── FindSqlite.cmake │ ├── FindWOFF2Dec.cmake │ ├── FindWPE.cmake │ ├── FindWPEBackend-fdo.cmake │ ├── FindWayland.cmake │ ├── FindWaylandProtocols.cmake │ ├── FindWebP.cmake │ ├── FindXz.cmake │ ├── GStreamerChecks.cmake │ ├── GStreamerDefinitions.cmake │ ├── GStreamerDependencies.cmake │ ├── GtkDoc.cmake │ ├── OptionsAppleWin.cmake │ ├── OptionsCommon.cmake │ ├── OptionsFTW.cmake │ ├── OptionsGTK.cmake │ ├── OptionsJSCOnly.cmake │ ├── OptionsMSVC.cmake │ ├── OptionsMac.cmake │ ├── OptionsPlayStation.cmake │ ├── OptionsUltralightLinux.cmake │ ├── OptionsUltralightMac.cmake │ ├── OptionsUltralightWin.cmake │ ├── OptionsWPE.cmake │ ├── OptionsWin.cmake │ ├── OptionsWinCairo.cmake │ ├── PrecompiledHeader.cmake │ ├── UltralightDefinitions.cmake │ ├── UltralightOptions.cmake │ ├── VersioningUtils.cmake │ ├── WebKitCCache.cmake │ ├── WebKitCommon.cmake │ ├── WebKitCompilerFlags.cmake │ ├── WebKitDist.cmake │ ├── WebKitFS.cmake │ ├── WebKitFeatures.cmake │ ├── WebKitMacros.cmake │ ├── WebKitPackaging.cmake │ ├── WinTools.make │ ├── target │ │ └── icu.cmake │ └── tools │ │ ├── scripts │ │ ├── COPYRIGHT-END-YEAR │ │ ├── VERSION │ │ ├── auto-version.pl │ │ ├── feature-defines.pl │ │ └── version-stamp.pl │ │ └── vsprops │ │ ├── FeatureDefines.props │ │ ├── FeatureDefinesCairo.props │ │ ├── GStreamer32.props │ │ ├── GStreamer64.props │ │ ├── GStreamerCommon.props │ │ ├── WinCairo.props │ │ ├── cURL.props │ │ ├── common.props │ │ ├── debug.props │ │ ├── debug_wincairo.props │ │ ├── debugsuffix.props │ │ ├── production.props │ │ └── release.props └── mimalloc │ ├── .gitattributes │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── azure-pipelines.yml │ ├── bin │ ├── mimalloc-redirect.dll │ ├── mimalloc-redirect.lib │ ├── mimalloc-redirect32.dll │ ├── mimalloc-redirect32.lib │ ├── minject.exe │ └── minject32.exe │ ├── cmake │ ├── JoinPaths.cmake │ ├── mimalloc-config-version.cmake │ └── mimalloc-config.cmake │ ├── doc │ ├── bench-2020 │ │ ├── bench-c5-18xlarge-2020-01-20-a.svg │ │ ├── bench-c5-18xlarge-2020-01-20-b.svg │ │ ├── bench-c5-18xlarge-2020-01-20-rss-a.svg │ │ ├── bench-c5-18xlarge-2020-01-20-rss-b.svg │ │ ├── bench-r5a-1.svg │ │ ├── bench-r5a-12xlarge-2020-01-16-a.svg │ │ ├── bench-r5a-12xlarge-2020-01-16-b.svg │ │ ├── bench-r5a-2.svg │ │ ├── bench-r5a-rss-1.svg │ │ ├── bench-r5a-rss-2.svg │ │ ├── bench-spec-rss.svg │ │ ├── bench-spec.svg │ │ ├── bench-z4-1.svg │ │ ├── bench-z4-2.svg │ │ ├── bench-z4-rss-1.svg │ │ └── bench-z4-rss-2.svg │ ├── bench-2021 │ │ ├── bench-amd5950x-2021-01-30-a.svg │ │ ├── bench-amd5950x-2021-01-30-b.svg │ │ ├── bench-c5-18xlarge-2021-01-30-a.svg │ │ ├── bench-c5-18xlarge-2021-01-30-b.svg │ │ ├── bench-c5-18xlarge-2021-01-30-rss-a.svg │ │ ├── bench-c5-18xlarge-2021-01-30-rss-b.svg │ │ └── bench-macmini-2021-01-30.svg │ ├── doxyfile │ ├── ds-logo.jpg │ ├── ds-logo.png │ ├── mimalloc-doc.h │ ├── mimalloc-doxygen.css │ ├── mimalloc-logo-100.png │ ├── mimalloc-logo.png │ ├── mimalloc-logo.svg │ ├── spades-logo.png │ └── unreal-logo.svg │ ├── ide │ ├── vs2017 │ │ ├── mimalloc-override-test.vcxproj │ │ ├── mimalloc-override.vcxproj │ │ ├── mimalloc-test-stress.vcxproj │ │ ├── mimalloc-test.vcxproj │ │ ├── mimalloc.sln │ │ └── mimalloc.vcxproj │ ├── vs2019 │ │ ├── mimalloc-override-test.vcxproj │ │ ├── mimalloc-override.vcxproj │ │ ├── mimalloc-test-api.vcxproj │ │ ├── mimalloc-test-stress.vcxproj │ │ ├── mimalloc-test.vcxproj │ │ ├── mimalloc.sln │ │ └── mimalloc.vcxproj │ └── vs2022 │ │ ├── mimalloc-override-test.vcxproj │ │ ├── mimalloc-override.vcxproj │ │ ├── mimalloc-test-api.vcxproj │ │ ├── mimalloc-test-stress.vcxproj │ │ ├── mimalloc-test.vcxproj │ │ ├── mimalloc.sln │ │ └── mimalloc.vcxproj │ ├── include │ ├── mimalloc-new-delete.h │ ├── mimalloc-override.h │ ├── mimalloc.h │ └── mimalloc │ │ ├── atomic.h │ │ ├── internal.h │ │ ├── prim.h │ │ ├── track.h │ │ └── types.h │ ├── mimalloc.pc.in │ ├── readme.md │ ├── src │ ├── alloc-aligned.c │ ├── alloc-override.c │ ├── alloc-posix.c │ ├── alloc.c │ ├── arena.c │ ├── bitmap.c │ ├── bitmap.h │ ├── heap.c │ ├── init.c │ ├── options.c │ ├── os.c │ ├── page-queue.c │ ├── page.c │ ├── prim │ │ ├── osx │ │ │ ├── alloc-override-zone.c │ │ │ └── prim.c │ │ ├── prim.c │ │ ├── readme.md │ │ ├── unix │ │ │ └── prim.c │ │ ├── wasi │ │ │ └── prim.c │ │ └── windows │ │ │ ├── etw-mimalloc.wprp │ │ │ ├── etw.h │ │ │ ├── etw.man │ │ │ ├── prim.c │ │ │ └── readme.md │ ├── random.c │ ├── region.c │ ├── segment-cache.c │ ├── segment.c │ ├── static.c │ └── stats.c │ └── test │ ├── CMakeLists.txt │ ├── main-override-static.c │ ├── main-override.c │ ├── main-override.cpp │ ├── main.c │ ├── readme.md │ ├── test-api-fill.c │ ├── test-api.c │ ├── test-stress.c │ ├── test-wrong.c │ └── testhelper.h ├── cacert.pem ├── cmake ├── build_options.cmake ├── common.cmake ├── compiler │ └── cl.cmake ├── flags │ ├── add_cache_flag.cmake │ ├── msvc_runtime_library_to_meson_flags.cmake │ └── msvc_runtime_library_to_msvc_flags.cmake ├── toolchains │ ├── clang_x64_linux_cross_windows.cmake │ ├── clang_x64_linux_ubuntu_18.04.cmake │ ├── clang_x64_macos_10.14.cmake │ ├── msvc_x64_windows.cmake │ ├── msvc_x86_windows.cmake │ └── win_platform_defines.h └── util │ ├── autodetect_toolchain.cmake │ ├── load_sources.cmake │ ├── show_fatal_error.cmake │ ├── show_status.cmake │ └── show_warning.cmake ├── make ├── make-cross-linux.bat └── make.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CreateSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/CreateSDK.cmake -------------------------------------------------------------------------------- /Deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Deps.cmake -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/README.md -------------------------------------------------------------------------------- /Source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/.clang-format -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/GetDeps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/GetDeps/CMakeLists.txt -------------------------------------------------------------------------------- /Source/GetDeps/dummy.c: -------------------------------------------------------------------------------- 1 | int main () { return 0; } -------------------------------------------------------------------------------- /Source/JavaScriptCore/API/tests/testapiScripts/dependencyListTests/bar.js: -------------------------------------------------------------------------------- 1 | export let hello = 1; 2 | -------------------------------------------------------------------------------- /Source/JavaScriptCore/API/tests/testapiScripts/dependencyListTests/foo.js: -------------------------------------------------------------------------------- 1 | export let things = null; 2 | -------------------------------------------------------------------------------- /Source/JavaScriptCore/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/COPYING.LIB -------------------------------------------------------------------------------- /Source/JavaScriptCore/GLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/GLib.cmake -------------------------------------------------------------------------------- /Source/JavaScriptCore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/Info.plist -------------------------------------------------------------------------------- /Source/JavaScriptCore/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.shared 2 | -------------------------------------------------------------------------------- /Source/JavaScriptCore/Sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/Sources.txt -------------------------------------------------------------------------------- /Source/JavaScriptCore/b3/B3Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/b3/B3Bank.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/b3/B3CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/b3/B3CFG.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/b3/B3Kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/b3/B3Kind.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/b3/B3Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/b3/B3Type.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/config.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/dfg/DFGPrePostNumbering.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/JavaScriptCore/dfg/DFGPrePostNumbering.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/JavaScriptCore/heap/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/heap/Heap.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/heap/Weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/heap/Weak.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/icu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/icu/LICENSE -------------------------------------------------------------------------------- /Source/JavaScriptCore/icu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/icu/README -------------------------------------------------------------------------------- /Source/JavaScriptCore/jit/JIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/jit/JIT.cpp -------------------------------------------------------------------------------- /Source/JavaScriptCore/jit/JIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/jit/JIT.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/jit/Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/jit/Reg.cpp -------------------------------------------------------------------------------- /Source/JavaScriptCore/jit/Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/jit/Reg.h -------------------------------------------------------------------------------- /Source/JavaScriptCore/jsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/jsc.cpp -------------------------------------------------------------------------------- /Source/JavaScriptCore/shell/PlatformUltralightLinux.cmake: -------------------------------------------------------------------------------- 1 | list(APPEND JSC_LIBRARIES 2 | pthread 3 | ) 4 | -------------------------------------------------------------------------------- /Source/JavaScriptCore/yarr/Yarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/JavaScriptCore/yarr/Yarr.h -------------------------------------------------------------------------------- /Source/SQLite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/SQLite/CMakeLists.txt -------------------------------------------------------------------------------- /Source/SQLite/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/SQLite/sqlite3.c -------------------------------------------------------------------------------- /Source/SQLite/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/SQLite/sqlite3.h -------------------------------------------------------------------------------- /Source/SQLite/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/SQLite/sqlite3ext.h -------------------------------------------------------------------------------- /Source/WTF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/CMakeLists.txt -------------------------------------------------------------------------------- /Source/WTF/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.shared 2 | -------------------------------------------------------------------------------- /Source/WTF/WTF.vcxproj/WTF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/WTF.vcxproj/WTF.proj -------------------------------------------------------------------------------- /Source/WTF/benchmarks/ToyLocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/benchmarks/ToyLocks.h -------------------------------------------------------------------------------- /Source/WTF/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/config.h -------------------------------------------------------------------------------- /Source/WTF/icu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/LICENSE -------------------------------------------------------------------------------- /Source/WTF/icu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/README -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/basictz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/basictz.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/brkiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/brkiter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/calendar.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/caniter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/caniter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/chariter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/chariter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/choicfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/choicfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/coleitr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/coleitr.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/coll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/coll.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/curramt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/curramt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/currpinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/currpinf.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/currunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/currunit.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/datefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/datefmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dbbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dbbi.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dcfmtsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dcfmtsym.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/decimfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/decimfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/docmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/docmain.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dtfmtsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dtfmtsym.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dtintrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dtintrv.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dtitvfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dtitvfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dtitvinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dtitvinf.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dtptngen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dtptngen.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/dtrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/dtrule.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/enumset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/enumset.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/fieldpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/fieldpos.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/fmtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/fmtable.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/format.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/fpositer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/fpositer.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/gender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/gender.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/gregocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/gregocal.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/icuplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/icuplug.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/idna.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/locdspnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/locdspnm.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/locid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/locid.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/measfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/measfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/measunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/measunit.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/measure.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/msgfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/msgfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/normlzr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/normlzr.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/numfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/numfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/numsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/numsys.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/parseerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/parseerr.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/parsepos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/parsepos.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/platform.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/plurfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/plurfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/plurrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/plurrule.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ptypes.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/putil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/putil.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/rbbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/rbbi.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/rbnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/rbnf.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/rbtz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/rbtz.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/regex.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/region.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/rep.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/resbund.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/resbund.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/schriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/schriter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/search.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/selfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/selfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/simpletz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/simpletz.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/smpdtfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/smpdtfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/sortkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/sortkey.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/strenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/strenum.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/stsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/stsearch.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/symtable.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tblcoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tblcoll.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/timezone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/timezone.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tmunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tmunit.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tmutamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tmutamt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tmutfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tmutfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/translit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/translit.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tzfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tzfmt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tznames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tznames.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tzrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tzrule.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/tztrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/tztrans.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ubidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ubidi.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ubrk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ubrk.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucal.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucasemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucasemap.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucat.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uchar.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uchriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uchriter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uclean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uclean.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucnv.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucnv_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucnv_cb.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucnv_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucnv_err.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucnvsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucnvsel.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucol.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucoleitr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucoleitr.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uconfig.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucsdet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucsdet.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ucurr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ucurr.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/udat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/udat.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/udata.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/udatpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/udatpg.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uenum.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ugender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ugender.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uidna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uidna.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uiter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uldnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uldnames.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uloc.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ulocdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ulocdata.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/umachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/umachine.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/umisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/umisc.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/umsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/umsg.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unifilt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unifilt.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unifunct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unifunct.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unimatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unimatch.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unirepl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unirepl.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uniset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uniset.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unistr.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unorm.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unorm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unorm2.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unum.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/unumsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/unumsys.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uobject.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uregex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uregex.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uregion.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/urename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/urename.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/urep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/urep.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ures.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uscript.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/usearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/usearch.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uset.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/usetiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/usetiter.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ushape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ushape.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uspoof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uspoof.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/usprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/usprep.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ustdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ustdio.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ustream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ustream.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/ustring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/ustring.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utext.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utf.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utf16.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utf32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utf32.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utf8.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utf_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utf_old.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utmscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utmscale.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utrace.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utrans.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/utypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/utypes.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uvernum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uvernum.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/uversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/uversion.h -------------------------------------------------------------------------------- /Source/WTF/icu/unicode/vtzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/icu/unicode/vtzone.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ASCIICType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ASCIICType.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/ASCIICType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ASCIICType.h -------------------------------------------------------------------------------- /Source/WTF/wtf/AggregateLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/AggregateLogger.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Algorithms.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Assertions.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Assertions.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Atomics.h -------------------------------------------------------------------------------- /Source/WTF/wtf/AutodrainedPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/AutodrainedPool.h -------------------------------------------------------------------------------- /Source/WTF/wtf/AutomaticThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/AutomaticThread.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BackwardsGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BackwardsGraph.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Bag.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BagToHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BagToHashMap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BitVector.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BitVector.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Bitmap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BlockPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BlockPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BloomFilter.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BooleanLattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BooleanLattice.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Box.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Brigand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Brigand.h -------------------------------------------------------------------------------- /Source/WTF/wtf/BubbleSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/BubbleSort.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ByteOrder.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CMakeLists.txt -------------------------------------------------------------------------------- /Source/WTF/wtf/CPUTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CPUTime.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/CPUTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CPUTime.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CagedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CagedPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CagedUniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CagedUniquePtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CheckedBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CheckedBoolean.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ClockType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ClockType.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/ClockType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ClockType.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CommaPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CommaPrinter.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Compiler.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ConcurrentBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ConcurrentBuffer.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ConcurrentVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ConcurrentVector.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Condition.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CountingLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CountingLock.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/CountingLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CountingLock.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CrossThreadQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CrossThreadQueue.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CrossThreadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CrossThreadTask.h -------------------------------------------------------------------------------- /Source/WTF/wtf/CurrentTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/CurrentTime.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/DataLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DataLog.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/DataLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DataLog.h -------------------------------------------------------------------------------- /Source/WTF/wtf/DateMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DateMath.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/DateMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DateMath.h -------------------------------------------------------------------------------- /Source/WTF/wtf/DebugUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DebugUtilities.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Deque.h -------------------------------------------------------------------------------- /Source/WTF/wtf/DisallowCType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DisallowCType.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Dominators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Dominators.h -------------------------------------------------------------------------------- /Source/WTF/wtf/DoublyLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DoublyLinkedList.h -------------------------------------------------------------------------------- /Source/WTF/wtf/DumbPtrTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DumbPtrTraits.h -------------------------------------------------------------------------------- /Source/WTF/wtf/DumbValueTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/DumbValueTraits.h -------------------------------------------------------------------------------- /Source/WTF/wtf/EnumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/EnumTraits.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Expected.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ExportMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ExportMacros.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FastBitVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FastBitVector.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/FastBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FastBitVector.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FastMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FastMalloc.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/FastMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FastMalloc.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FastTLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FastTLS.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FeatureDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FeatureDefines.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FileMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FileMetadata.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FilePrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FilePrintStream.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FileSystem.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FileSystem.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FlipBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FlipBytes.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Forward.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Function.h -------------------------------------------------------------------------------- /Source/WTF/wtf/FunctionTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/FunctionTraits.h -------------------------------------------------------------------------------- /Source/WTF/wtf/GetPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/GetPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Gigacage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Gigacage.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Gigacage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Gigacage.h -------------------------------------------------------------------------------- /Source/WTF/wtf/GlobalVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/GlobalVersion.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/GlobalVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/GlobalVersion.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashCountedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashCountedSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashFunctions.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashIterators.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashMap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashMethod.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashTable.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashTable.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HashTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HashTraits.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Hasher.h -------------------------------------------------------------------------------- /Source/WTF/wtf/HexNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HexNumber.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/HexNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/HexNumber.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Identified.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Identified.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Indenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Indenter.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IndexKeyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IndexKeyType.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IndexMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IndexMap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IndexSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IndexSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IndexSparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IndexSparseSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/InlineASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/InlineASM.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Insertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Insertion.h -------------------------------------------------------------------------------- /Source/WTF/wtf/InstanceCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/InstanceCounted.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IsoMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IsoMalloc.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IsoMallocInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IsoMallocInlines.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IteratorAdaptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IteratorAdaptors.h -------------------------------------------------------------------------------- /Source/WTF/wtf/IteratorRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/IteratorRange.h -------------------------------------------------------------------------------- /Source/WTF/wtf/JSONValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/JSONValues.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/JSONValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/JSONValues.h -------------------------------------------------------------------------------- /Source/WTF/wtf/JSValueMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/JSValueMalloc.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/JSValueMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/JSValueMalloc.h -------------------------------------------------------------------------------- /Source/WTF/wtf/KeyValuePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/KeyValuePair.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LEBDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LEBDecoder.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Language.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Language.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ListDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ListDump.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ListHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ListHashSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Liveness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Liveness.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Lock.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Lock.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LockAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LockAlgorithm.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Locker.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LocklessBag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LocklessBag.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Logger.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Logger.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LoggerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LoggerHelper.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LoggingHashID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LoggingHashID.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LoggingHashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LoggingHashMap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/LoggingHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/LoggingHashSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MD5.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MD5.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MachSendRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MachSendRight.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MainThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MainThread.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/MainThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MainThread.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MallocPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MallocPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Markable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Markable.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MathExtras.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MediaTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MediaTime.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/MediaTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MediaTime.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MemoryFootprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MemoryFootprint.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MemoryProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MemoryProfiler.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/MemoryProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MemoryProfiler.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MessageQueue.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MetaAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MetaAllocator.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/MetaAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MetaAllocator.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MetaAllocatorPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MetaAllocatorPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/MonotonicTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MonotonicTime.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/MonotonicTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/MonotonicTime.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NakedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NakedPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NaturalLoops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NaturalLoops.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NeverDestroyed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NeverDestroyed.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NoLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NoLock.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NoTailCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NoTailCalls.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Noncopyable.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Nonmovable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Nonmovable.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NotFound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NotFound.h -------------------------------------------------------------------------------- /Source/WTF/wtf/NumberOfCores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NumberOfCores.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/NumberOfCores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/NumberOfCores.h -------------------------------------------------------------------------------- /Source/WTF/wtf/OSAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/OSAllocator.h -------------------------------------------------------------------------------- /Source/WTF/wtf/OSObjectPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/OSObjectPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/OSRandomSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/OSRandomSource.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/OSRandomSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/OSRandomSource.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ObjectIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ObjectIdentifier.h -------------------------------------------------------------------------------- /Source/WTF/wtf/OptionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/OptionSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Optional.h -------------------------------------------------------------------------------- /Source/WTF/wtf/OrderMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/OrderMaker.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Packed.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PackedIntVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PackedIntVector.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PageAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PageAllocation.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PageBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PageBlock.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/PageBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PageBlock.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PageReservation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PageReservation.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ParallelJobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ParallelJobs.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ParkingLot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ParkingLot.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/ParkingLot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ParkingLot.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Platform.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PlatformFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PlatformFTW.cmake -------------------------------------------------------------------------------- /Source/WTF/wtf/PlatformGTK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PlatformGTK.cmake -------------------------------------------------------------------------------- /Source/WTF/wtf/PlatformMac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PlatformMac.cmake -------------------------------------------------------------------------------- /Source/WTF/wtf/PlatformWPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PlatformWPE.cmake -------------------------------------------------------------------------------- /Source/WTF/wtf/PlatformWin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PlatformWin.cmake -------------------------------------------------------------------------------- /Source/WTF/wtf/PrintStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PrintStream.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/PrintStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PrintStream.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PriorityQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PriorityQueue.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ProcessID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ProcessID.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ProcessPrivilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ProcessPrivilege.h -------------------------------------------------------------------------------- /Source/WTF/wtf/PtrTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PtrTag.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/PtrTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/PtrTag.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RAMSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RAMSize.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/RAMSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RAMSize.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RandomDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RandomDevice.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/RandomDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RandomDevice.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RandomNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RandomNumber.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/RandomNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RandomNumber.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RandomNumberSeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RandomNumberSeed.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Range.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RangeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RangeSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RawPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RawPointer.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ReadWriteLock.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ReadWriteLock.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RecursableLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RecursableLambda.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RedBlackTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RedBlackTree.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Ref.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RefCounted.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RefCountedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RefCountedArray.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RefCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RefCounter.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RefPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RefPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RetainPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RetainPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RunLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RunLoop.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/RunLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RunLoop.h -------------------------------------------------------------------------------- /Source/WTF/wtf/RunLoopTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/RunLoopTimer.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SHA1.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SHA1.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SchedulePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SchedulePair.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Scope.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ScopedLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ScopedLambda.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Seconds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Seconds.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Seconds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Seconds.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SegmentedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SegmentedVector.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SetForScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SetForScope.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SharedTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SharedTask.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SimpleStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SimpleStats.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SingleRootGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SingleRootGraph.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SinglyLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SinglyLinkedList.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SixCharacterHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SixCharacterHash.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SizeLimits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SizeLimits.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/SmallPtrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SmallPtrSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SoftLinking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SoftLinking.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SpanningTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SpanningTree.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Spectrum.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StackBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackBounds.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/StackBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackBounds.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StackPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackPointer.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/StackPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackPointer.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StackShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackShot.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StackStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackStats.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/StackStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackStats.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StackTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackTrace.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StackTrace.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StdLibExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StdLibExtras.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StdList.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StdMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StdMap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StdSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StdSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StdUnorderedMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StdUnorderedMap.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StdUnorderedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StdUnorderedSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Stopwatch.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StreamBuffer.h -------------------------------------------------------------------------------- /Source/WTF/wtf/StringExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/StringExtras.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SystemFree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SystemFree.h -------------------------------------------------------------------------------- /Source/WTF/wtf/SystemTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/SystemTracing.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ThreadGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ThreadGroup.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/ThreadGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ThreadGroup.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ThreadMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ThreadMessage.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/ThreadMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ThreadMessage.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ThreadSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ThreadSpecific.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Threading.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/Threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Threading.h -------------------------------------------------------------------------------- /Source/WTF/wtf/TimingScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/TimingScope.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/TimingScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/TimingScope.h -------------------------------------------------------------------------------- /Source/WTF/wtf/TinyLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/TinyLRUCache.h -------------------------------------------------------------------------------- /Source/WTF/wtf/TinyPtrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/TinyPtrSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/TriState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/TriState.h -------------------------------------------------------------------------------- /Source/WTF/wtf/TypeCasts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/TypeCasts.h -------------------------------------------------------------------------------- /Source/WTF/wtf/URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URL.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URL.h -------------------------------------------------------------------------------- /Source/WTF/wtf/URLHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URLHash.h -------------------------------------------------------------------------------- /Source/WTF/wtf/URLHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URLHelpers.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/URLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URLHelpers.h -------------------------------------------------------------------------------- /Source/WTF/wtf/URLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URLParser.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/URLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/URLParser.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UUID.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/UUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UUID.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UnalignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UnalignedAccess.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Unexpected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Unexpected.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UniStdExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UniStdExtras.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UnionFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UnionFind.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UniqueArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UniqueArray.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UniqueRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UniqueRef.h -------------------------------------------------------------------------------- /Source/WTF/wtf/UnsafePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/UnsafePointer.h -------------------------------------------------------------------------------- /Source/WTF/wtf/VMTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/VMTags.h -------------------------------------------------------------------------------- /Source/WTF/wtf/ValueCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/ValueCheck.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Variant.h -------------------------------------------------------------------------------- /Source/WTF/wtf/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/Vector.h -------------------------------------------------------------------------------- /Source/WTF/wtf/VectorTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/VectorTraits.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WTFAssertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WTFAssertions.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/WTFSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WTFSemaphore.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WallTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WallTime.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/WallTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WallTime.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WeakHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WeakHashSet.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WeakObjCPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WeakObjCPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WeakPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WeakPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WeakRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WeakRandom.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WindowsExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WindowsExtras.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WordLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WordLock.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/WordLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WordLock.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WorkQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WorkQueue.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/WorkQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WorkQueue.h -------------------------------------------------------------------------------- /Source/WTF/wtf/WorkerPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WorkerPool.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/WorkerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/WorkerPool.h -------------------------------------------------------------------------------- /Source/WTF/wtf/cf/CFURLExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cf/CFURLExtras.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/cf/CFURLExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cf/CFURLExtras.h -------------------------------------------------------------------------------- /Source/WTF/wtf/cf/LanguageCF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cf/LanguageCF.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/cf/RunLoopCF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cf/RunLoopCF.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/cf/TypeCastsCF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cf/TypeCastsCF.h -------------------------------------------------------------------------------- /Source/WTF/wtf/cf/URLCF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cf/URLCF.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/cocoa/URLCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/cocoa/URLCocoa.mm -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/AUTHORS -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/COPYING -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/LICENSE -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/README.md -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/bignum-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/bignum-dtoa.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/bignum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/bignum.cc -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/bignum.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/diy-fp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/diy-fp.cc -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/diy-fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/diy-fp.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/fast-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/fast-dtoa.cc -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/fast-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/fast-dtoa.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/fixed-dtoa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/fixed-dtoa.cc -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/fixed-dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/fixed-dtoa.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/ieee.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/strtod.cc -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/strtod.h -------------------------------------------------------------------------------- /Source/WTF/wtf/dtoa/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/dtoa/utils.h -------------------------------------------------------------------------------- /Source/WTF/wtf/glib/GRefPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/glib/GRefPtr.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/glib/GRefPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/glib/GRefPtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/glib/GTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/glib/GTypedefs.h -------------------------------------------------------------------------------- /Source/WTF/wtf/glib/GUniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/glib/GUniquePtr.h -------------------------------------------------------------------------------- /Source/WTF/wtf/glib/URLGLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/glib/URLGLib.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/glib/WTFGType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/glib/WTFGType.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/AtomString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/AtomString.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/Base64.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/text/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/Base64.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/CString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/CString.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/text/CString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/CString.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/LChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/LChar.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/LineEnding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/LineEnding.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/StringHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/StringHash.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/StringImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/StringImpl.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/StringView.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/SymbolImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/SymbolImpl.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/TextStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/TextStream.h -------------------------------------------------------------------------------- /Source/WTF/wtf/text/WTFString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/WTFString.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/text/WTFString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/text/WTFString.h -------------------------------------------------------------------------------- /Source/WTF/wtf/threads/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/threads/Signals.h -------------------------------------------------------------------------------- /Source/WTF/wtf/threads/win/BinarySemaphoreWin.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WTF/wtf/unicode/Collator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/unicode/Collator.h -------------------------------------------------------------------------------- /Source/WTF/wtf/win/CPUTimeWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/CPUTimeWin.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/win/DbgHelperWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/DbgHelperWin.h -------------------------------------------------------------------------------- /Source/WTF/wtf/win/GDIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/GDIObject.h -------------------------------------------------------------------------------- /Source/WTF/wtf/win/PathWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/PathWalker.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/win/PathWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/PathWalker.h -------------------------------------------------------------------------------- /Source/WTF/wtf/win/RunLoopWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/RunLoopWin.cpp -------------------------------------------------------------------------------- /Source/WTF/wtf/win/SoftLinking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/SoftLinking.h -------------------------------------------------------------------------------- /Source/WTF/wtf/win/WTFDLL.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WTF/wtf/win/Win32Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WTF/wtf/win/Win32Handle.h -------------------------------------------------------------------------------- /Source/WebCore/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/.gitattributes -------------------------------------------------------------------------------- /Source/WebCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/CMakeLists.txt -------------------------------------------------------------------------------- /Source/WebCore/Headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/Headers.cmake -------------------------------------------------------------------------------- /Source/WebCore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/Info.plist -------------------------------------------------------------------------------- /Source/WebCore/LICENSE-APPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/LICENSE-APPLE -------------------------------------------------------------------------------- /Source/WebCore/LICENSE-LGPL-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/LICENSE-LGPL-2 -------------------------------------------------------------------------------- /Source/WebCore/LICENSE-LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/LICENSE-LGPL-2.1 -------------------------------------------------------------------------------- /Source/WebCore/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.shared 2 | -------------------------------------------------------------------------------- /Source/WebCore/PAL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PAL/config.h -------------------------------------------------------------------------------- /Source/WebCore/PAL/pal/Gunzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PAL/pal/Gunzip.h -------------------------------------------------------------------------------- /Source/WebCore/PAL/pal/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PAL/pal/Logging.h -------------------------------------------------------------------------------- /Source/WebCore/PlatformFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PlatformFTW.cmake -------------------------------------------------------------------------------- /Source/WebCore/PlatformGTK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PlatformGTK.cmake -------------------------------------------------------------------------------- /Source/WebCore/PlatformMac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PlatformMac.cmake -------------------------------------------------------------------------------- /Source/WebCore/PlatformWPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PlatformWPE.cmake -------------------------------------------------------------------------------- /Source/WebCore/PlatformWin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/PlatformWin.cmake -------------------------------------------------------------------------------- /Source/WebCore/Resources/ContentFilterBlockedPage.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Source/WebCore/Sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/Sources.txt -------------------------------------------------------------------------------- /Source/WebCore/SourcesCocoa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/SourcesCocoa.txt -------------------------------------------------------------------------------- /Source/WebCore/SourcesGTK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/SourcesGTK.txt -------------------------------------------------------------------------------- /Source/WebCore/SourcesWPE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/SourcesWPE.txt -------------------------------------------------------------------------------- /Source/WebCore/UWPDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/UWPDefs.h -------------------------------------------------------------------------------- /Source/WebCore/WebCore.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/WebCore.order -------------------------------------------------------------------------------- /Source/WebCore/WebCorePrefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/WebCorePrefix.cpp -------------------------------------------------------------------------------- /Source/WebCore/WebCorePrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/WebCorePrefix.h -------------------------------------------------------------------------------- /Source/WebCore/bridge/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/bridge/Bridge.h -------------------------------------------------------------------------------- /Source/WebCore/bridge/c/c_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/bridge/c/c_class.h -------------------------------------------------------------------------------- /Source/WebCore/bridge/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/bridge/test.js -------------------------------------------------------------------------------- /Source/WebCore/bridge/testC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/bridge/testC.js -------------------------------------------------------------------------------- /Source/WebCore/bridge/testM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/bridge/testM.js -------------------------------------------------------------------------------- /Source/WebCore/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/config.h -------------------------------------------------------------------------------- /Source/WebCore/crypto/CryptoKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/crypto/CryptoKey.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSFontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSFontFace.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSFontValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSFontValue.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSHelper.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSMarkup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSMarkup.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/CSSMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSMarkup.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSMediaRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSMediaRule.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSPageRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSPageRule.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSPaintSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSPaintSize.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSProperty.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSRule.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/CSSRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSRule.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSRule.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSRule.idl -------------------------------------------------------------------------------- /Source/WebCore/css/CSSRuleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSRuleList.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSSelector.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSStyleRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSStyleRule.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSValue.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/CSSValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSValue.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSValueList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSValueList.h -------------------------------------------------------------------------------- /Source/WebCore/css/CSSValuePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/CSSValuePool.h -------------------------------------------------------------------------------- /Source/WebCore/css/Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/Counter.h -------------------------------------------------------------------------------- /Source/WebCore/css/DOMMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/DOMMatrix.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/DOMMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/DOMMatrix.h -------------------------------------------------------------------------------- /Source/WebCore/css/DOMMatrix.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/DOMMatrix.idl -------------------------------------------------------------------------------- /Source/WebCore/css/FontFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/FontFace.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/FontFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/FontFace.h -------------------------------------------------------------------------------- /Source/WebCore/css/FontFace.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/FontFace.idl -------------------------------------------------------------------------------- /Source/WebCore/css/FontFaceSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/FontFaceSet.h -------------------------------------------------------------------------------- /Source/WebCore/css/MediaList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/MediaList.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/MediaList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/MediaList.h -------------------------------------------------------------------------------- /Source/WebCore/css/MediaList.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/MediaList.idl -------------------------------------------------------------------------------- /Source/WebCore/css/MediaQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/MediaQuery.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/MediaQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/MediaQuery.h -------------------------------------------------------------------------------- /Source/WebCore/css/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/Pair.h -------------------------------------------------------------------------------- /Source/WebCore/css/RGBColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/RGBColor.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/RGBColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/RGBColor.h -------------------------------------------------------------------------------- /Source/WebCore/css/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/Rect.h -------------------------------------------------------------------------------- /Source/WebCore/css/RuleFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/RuleFeature.h -------------------------------------------------------------------------------- /Source/WebCore/css/RuleSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/RuleSet.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/RuleSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/RuleSet.h -------------------------------------------------------------------------------- /Source/WebCore/css/StyleBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleBuilder.h -------------------------------------------------------------------------------- /Source/WebCore/css/StyleColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleColor.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/StyleColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleColor.h -------------------------------------------------------------------------------- /Source/WebCore/css/StyleMedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleMedia.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/StyleMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleMedia.h -------------------------------------------------------------------------------- /Source/WebCore/css/StyleMedia.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleMedia.idl -------------------------------------------------------------------------------- /Source/WebCore/css/StyleRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleRule.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/StyleRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleRule.h -------------------------------------------------------------------------------- /Source/WebCore/css/StyleSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleSheet.cpp -------------------------------------------------------------------------------- /Source/WebCore/css/StyleSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleSheet.h -------------------------------------------------------------------------------- /Source/WebCore/css/StyleSheet.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/StyleSheet.idl -------------------------------------------------------------------------------- /Source/WebCore/css/fullscreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/fullscreen.css -------------------------------------------------------------------------------- /Source/WebCore/css/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/html.css -------------------------------------------------------------------------------- /Source/WebCore/css/makeprop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/makeprop.pl -------------------------------------------------------------------------------- /Source/WebCore/css/makevalues.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/makevalues.pl -------------------------------------------------------------------------------- /Source/WebCore/css/mathml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/mathml.css -------------------------------------------------------------------------------- /Source/WebCore/css/plugIns.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/plugIns.css -------------------------------------------------------------------------------- /Source/WebCore/css/quirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/quirks.css -------------------------------------------------------------------------------- /Source/WebCore/css/svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/svg.css -------------------------------------------------------------------------------- /Source/WebCore/css/themeWin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/css/themeWin.css -------------------------------------------------------------------------------- /Source/WebCore/cssjit/CSSPtrTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/cssjit/CSSPtrTag.h -------------------------------------------------------------------------------- /Source/WebCore/dom/AbortSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/AbortSignal.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Attr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Attr.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Attr.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Attr.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Attr.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Attribute.h -------------------------------------------------------------------------------- /Source/WebCore/dom/CDATASection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/CDATASection.h -------------------------------------------------------------------------------- /Source/WebCore/dom/ChildNode.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ChildNode.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/Comment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Comment.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Comment.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Comment.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Comment.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/CustomEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/CustomEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMException.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMPoint.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMPoint.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMPoint.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMPointInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMPointInit.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMQuad.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMQuad.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMQuad.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMQuad.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMQuadInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMQuadInit.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMRect.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMRect.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMRect.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMRectInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMRectInit.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMRectList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMRectList.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMStringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMStringMap.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DOMTimeStamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DOMTimeStamp.h -------------------------------------------------------------------------------- /Source/WebCore/dom/DataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DataTransfer.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Document.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Document.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Document.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Document.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/DocumentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/DocumentType.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Element.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Element.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Element.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Element.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/ElementData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ElementData.h -------------------------------------------------------------------------------- /Source/WebCore/dom/ErrorEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ErrorEvent.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/ErrorEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ErrorEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/ErrorEvent.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ErrorEvent.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Event.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Event.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Event.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Event.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/EventContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventContext.h -------------------------------------------------------------------------------- /Source/WebCore/dom/EventInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventInit.h -------------------------------------------------------------------------------- /Source/WebCore/dom/EventInit.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventInit.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/EventNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventNames.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/EventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventNames.h -------------------------------------------------------------------------------- /Source/WebCore/dom/EventNames.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventNames.in -------------------------------------------------------------------------------- /Source/WebCore/dom/EventPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventPath.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/EventPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventPath.h -------------------------------------------------------------------------------- /Source/WebCore/dom/EventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventQueue.h -------------------------------------------------------------------------------- /Source/WebCore/dom/EventSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventSender.h -------------------------------------------------------------------------------- /Source/WebCore/dom/EventTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/EventTarget.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Exception.h -------------------------------------------------------------------------------- /Source/WebCore/dom/ExceptionOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ExceptionOr.h -------------------------------------------------------------------------------- /Source/WebCore/dom/FocusEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/FocusEvent.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/FocusEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/FocusEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/FocusEvent.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/FocusEvent.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/InputEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/InputEvent.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/InputEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/InputEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/InputEvent.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/InputEvent.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/LiveNodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/LiveNodeList.h -------------------------------------------------------------------------------- /Source/WebCore/dom/MessageEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/MessageEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/MessagePort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/MessagePort.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Microtasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Microtasks.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Microtasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Microtasks.h -------------------------------------------------------------------------------- /Source/WebCore/dom/MouseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/MouseEvent.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/MouseEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/MouseEvent.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/MouseEvent.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/NameNodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NameNodeList.h -------------------------------------------------------------------------------- /Source/WebCore/dom/NamedNodeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NamedNodeMap.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Node.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Node.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Node.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Node.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeFilter.h -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeFilter.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeFilter.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeIterator.h -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeList.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeList.h -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeList.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeList.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/NodeRareData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/NodeRareData.h -------------------------------------------------------------------------------- /Source/WebCore/dom/ParentNode.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/ParentNode.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/PointerEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/PointerEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Position.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Range.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Range.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Range.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Range.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/SuccessOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/SuccessOr.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Text.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Text.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Text.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Text.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/TextEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/TextEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Touch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Touch.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/Touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Touch.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Touch.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Touch.idl -------------------------------------------------------------------------------- /Source/WebCore/dom/TouchList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/TouchList.h -------------------------------------------------------------------------------- /Source/WebCore/dom/Traversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/Traversal.h -------------------------------------------------------------------------------- /Source/WebCore/dom/TreeScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/TreeScope.h -------------------------------------------------------------------------------- /Source/WebCore/dom/UIEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/UIEvent.cpp -------------------------------------------------------------------------------- /Source/WebCore/dom/UIEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/UIEvent.h -------------------------------------------------------------------------------- /Source/WebCore/dom/UIEvent.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/dom/UIEvent.idl -------------------------------------------------------------------------------- /Source/WebCore/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/features.json -------------------------------------------------------------------------------- /Source/WebCore/fileapi/Blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/fileapi/Blob.h -------------------------------------------------------------------------------- /Source/WebCore/fileapi/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/fileapi/File.h -------------------------------------------------------------------------------- /Source/WebCore/html/Autofill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/html/Autofill.h -------------------------------------------------------------------------------- /Source/WebCore/html/DOMURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/html/DOMURL.cpp -------------------------------------------------------------------------------- /Source/WebCore/html/DOMURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/html/DOMURL.h -------------------------------------------------------------------------------- /Source/WebCore/html/DOMURL.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/html/DOMURL.idl -------------------------------------------------------------------------------- /Source/WebCore/html/URLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/html/URLUtils.h -------------------------------------------------------------------------------- /Source/WebCore/icu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/icu/LICENSE -------------------------------------------------------------------------------- /Source/WebCore/icu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/icu/README -------------------------------------------------------------------------------- /Source/WebCore/page/BarProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/BarProp.h -------------------------------------------------------------------------------- /Source/WebCore/page/Chrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Chrome.cpp -------------------------------------------------------------------------------- /Source/WebCore/page/Chrome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Chrome.h -------------------------------------------------------------------------------- /Source/WebCore/page/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Crypto.cpp -------------------------------------------------------------------------------- /Source/WebCore/page/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Crypto.h -------------------------------------------------------------------------------- /Source/WebCore/page/Crypto.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Crypto.idl -------------------------------------------------------------------------------- /Source/WebCore/page/DOMTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/DOMTimer.h -------------------------------------------------------------------------------- /Source/WebCore/page/Frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Frame.cpp -------------------------------------------------------------------------------- /Source/WebCore/page/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Frame.h -------------------------------------------------------------------------------- /Source/WebCore/page/History.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/History.h -------------------------------------------------------------------------------- /Source/WebCore/page/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Location.h -------------------------------------------------------------------------------- /Source/WebCore/page/Page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Page.cpp -------------------------------------------------------------------------------- /Source/WebCore/page/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Page.h -------------------------------------------------------------------------------- /Source/WebCore/page/Quirks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Quirks.cpp -------------------------------------------------------------------------------- /Source/WebCore/page/Quirks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Quirks.h -------------------------------------------------------------------------------- /Source/WebCore/page/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Screen.cpp -------------------------------------------------------------------------------- /Source/WebCore/page/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Screen.h -------------------------------------------------------------------------------- /Source/WebCore/page/Screen.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/Screen.idl -------------------------------------------------------------------------------- /Source/WebCore/page/UndoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/page/UndoItem.h -------------------------------------------------------------------------------- /Source/WebCore/platform/graphics/ultralight/FontRenderer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/graphics/ultralight/FontRenderer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/graphics/ultralight/IntRectUltralight.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/graphics/ultralight/PatternUltralight.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/mediastream/libwebrtc/VideoToolBoxDecoderFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/mediastream/libwebrtc/VideoToolBoxDecoderFactory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/mediastream/libwebrtc/VideoToolBoxEncoderFactory.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/mediastream/libwebrtc/VideoToolBoxEncoderFactory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/ultralight/CryptoDigestUltralight.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/ultralight/FileSystemUltralight.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/ultralight/KeyedDecoderUltralight.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/platform/ultralight/SoundUltralight.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/WebCore/plugins/npapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/plugins/npapi.h -------------------------------------------------------------------------------- /Source/WebCore/public.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/public.sym -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGAngle.h -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGLength.h -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGMatrix.h -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGNumber.h -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGPoint.h -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGRect.h -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGRect.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGRect.idl -------------------------------------------------------------------------------- /Source/WebCore/svg/SVGTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/SVGTests.h -------------------------------------------------------------------------------- /Source/WebCore/svg/svgattrs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/svgattrs.in -------------------------------------------------------------------------------- /Source/WebCore/svg/svgtags.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/svg/svgtags.in -------------------------------------------------------------------------------- /Source/WebCore/xml/DOMParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/xml/DOMParser.h -------------------------------------------------------------------------------- /Source/WebCore/xml/XMLErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/xml/XMLErrors.h -------------------------------------------------------------------------------- /Source/WebCore/xml/XPathPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/xml/XPathPath.h -------------------------------------------------------------------------------- /Source/WebCore/xml/XPathStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/xml/XPathStep.h -------------------------------------------------------------------------------- /Source/WebCore/xml/XPathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/xml/XPathUtil.h -------------------------------------------------------------------------------- /Source/WebCore/xml/xmlattrs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebCore/xml/xmlattrs.in -------------------------------------------------------------------------------- /Source/WebInspectorUI/.eslintignore: -------------------------------------------------------------------------------- 1 | Localizations 2 | Tools 3 | UserInterface/External 4 | -------------------------------------------------------------------------------- /Source/WebInspectorUI/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.shared 2 | -------------------------------------------------------------------------------- /Source/WebKit/Scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/WebKit/Scripts/Makefile -------------------------------------------------------------------------------- /Source/bmalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/CMakeLists.txt -------------------------------------------------------------------------------- /Source/bmalloc/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.shared 2 | -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Bits.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Cache.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Chunk.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Heap.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/List.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Map.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Mutex.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Range.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Sizes.h -------------------------------------------------------------------------------- /Source/bmalloc/bmalloc/Zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/bmalloc/bmalloc/Zone.h -------------------------------------------------------------------------------- /Source/cmake/DetectSSE2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/DetectSSE2.cmake -------------------------------------------------------------------------------- /Source/cmake/FindATK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindATK.cmake -------------------------------------------------------------------------------- /Source/cmake/FindATSPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindATSPI.cmake -------------------------------------------------------------------------------- /Source/cmake/FindCairo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindCairo.cmake -------------------------------------------------------------------------------- /Source/cmake/FindCairoGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindCairoGL.cmake -------------------------------------------------------------------------------- /Source/cmake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindEGL.cmake -------------------------------------------------------------------------------- /Source/cmake/FindEnchant.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindEnchant.cmake -------------------------------------------------------------------------------- /Source/cmake/FindGDK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindGDK3.cmake -------------------------------------------------------------------------------- /Source/cmake/FindGLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindGLIB.cmake -------------------------------------------------------------------------------- /Source/cmake/FindGTK3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindGTK3.cmake -------------------------------------------------------------------------------- /Source/cmake/FindGperf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindGperf.cmake -------------------------------------------------------------------------------- /Source/cmake/FindHyphen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindHyphen.cmake -------------------------------------------------------------------------------- /Source/cmake/FindLibPSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindLibPSL.cmake -------------------------------------------------------------------------------- /Source/cmake/FindLibSoup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindLibSoup.cmake -------------------------------------------------------------------------------- /Source/cmake/FindNghttp2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindNghttp2.cmake -------------------------------------------------------------------------------- /Source/cmake/FindOpenGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindOpenGL.cmake -------------------------------------------------------------------------------- /Source/cmake/FindPixman.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindPixman.cmake -------------------------------------------------------------------------------- /Source/cmake/FindSqlite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindSqlite.cmake -------------------------------------------------------------------------------- /Source/cmake/FindWPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindWPE.cmake -------------------------------------------------------------------------------- /Source/cmake/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindWayland.cmake -------------------------------------------------------------------------------- /Source/cmake/FindWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindWebP.cmake -------------------------------------------------------------------------------- /Source/cmake/FindXz.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/FindXz.cmake -------------------------------------------------------------------------------- /Source/cmake/GtkDoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/GtkDoc.cmake -------------------------------------------------------------------------------- /Source/cmake/OptionsFTW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/OptionsFTW.cmake -------------------------------------------------------------------------------- /Source/cmake/OptionsGTK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/OptionsGTK.cmake -------------------------------------------------------------------------------- /Source/cmake/OptionsMSVC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/OptionsMSVC.cmake -------------------------------------------------------------------------------- /Source/cmake/OptionsMac.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/OptionsMac.cmake -------------------------------------------------------------------------------- /Source/cmake/OptionsWPE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/OptionsWPE.cmake -------------------------------------------------------------------------------- /Source/cmake/OptionsWin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/OptionsWin.cmake -------------------------------------------------------------------------------- /Source/cmake/WebKitDist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/WebKitDist.cmake -------------------------------------------------------------------------------- /Source/cmake/WebKitFS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/WebKitFS.cmake -------------------------------------------------------------------------------- /Source/cmake/WinTools.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/WinTools.make -------------------------------------------------------------------------------- /Source/cmake/target/icu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/cmake/target/icu.cmake -------------------------------------------------------------------------------- /Source/cmake/tools/scripts/COPYRIGHT-END-YEAR: -------------------------------------------------------------------------------- 1 | 2015 2 | -------------------------------------------------------------------------------- /Source/cmake/tools/scripts/VERSION: -------------------------------------------------------------------------------- 1 | 534 2 | -------------------------------------------------------------------------------- /Source/mimalloc/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/.gitattributes -------------------------------------------------------------------------------- /Source/mimalloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/.gitignore -------------------------------------------------------------------------------- /Source/mimalloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/CMakeLists.txt -------------------------------------------------------------------------------- /Source/mimalloc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/LICENSE -------------------------------------------------------------------------------- /Source/mimalloc/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/doc/doxyfile -------------------------------------------------------------------------------- /Source/mimalloc/mimalloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/mimalloc.pc.in -------------------------------------------------------------------------------- /Source/mimalloc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/readme.md -------------------------------------------------------------------------------- /Source/mimalloc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/alloc.c -------------------------------------------------------------------------------- /Source/mimalloc/src/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/arena.c -------------------------------------------------------------------------------- /Source/mimalloc/src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/bitmap.c -------------------------------------------------------------------------------- /Source/mimalloc/src/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/bitmap.h -------------------------------------------------------------------------------- /Source/mimalloc/src/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/heap.c -------------------------------------------------------------------------------- /Source/mimalloc/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/init.c -------------------------------------------------------------------------------- /Source/mimalloc/src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/options.c -------------------------------------------------------------------------------- /Source/mimalloc/src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/os.c -------------------------------------------------------------------------------- /Source/mimalloc/src/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/page.c -------------------------------------------------------------------------------- /Source/mimalloc/src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/random.c -------------------------------------------------------------------------------- /Source/mimalloc/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/region.c -------------------------------------------------------------------------------- /Source/mimalloc/src/segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/segment.c -------------------------------------------------------------------------------- /Source/mimalloc/src/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/static.c -------------------------------------------------------------------------------- /Source/mimalloc/src/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/src/stats.c -------------------------------------------------------------------------------- /Source/mimalloc/test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/test/main.c -------------------------------------------------------------------------------- /Source/mimalloc/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/Source/mimalloc/test/readme.md -------------------------------------------------------------------------------- /cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/cacert.pem -------------------------------------------------------------------------------- /cmake/build_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/cmake/build_options.cmake -------------------------------------------------------------------------------- /cmake/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/cmake/common.cmake -------------------------------------------------------------------------------- /cmake/compiler/cl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/cmake/compiler/cl.cmake -------------------------------------------------------------------------------- /cmake/util/load_sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/cmake/util/load_sources.cmake -------------------------------------------------------------------------------- /cmake/util/show_status.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/util/show_warning.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/make -------------------------------------------------------------------------------- /make-cross-linux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/make-cross-linux.bat -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralight-ux/WebCore/HEAD/make.bat --------------------------------------------------------------------------------