haikuwebkit/LayoutTests/inspector/canvas
Myles C. Maxfield f11022e79e Stop building WebGPU and the WHLSL compiler to decrease binary size
https://bugs.webkit.org/show_bug.cgi?id=228179

Reviewed by Dean Jackson, Robin Morisset, and Devin Rousso.

.:

* Source/cmake/OptionsFTW.cmake:
* Source/cmake/OptionsMac.cmake:
* Source/cmake/OptionsWinCairo.cmake:
* Source/cmake/WebKitFeatures.cmake:
* Source/cmake/tools/vsprops/FeatureDefines.props:
* Source/cmake/tools/vsprops/FeatureDefinesCairo.props:

Source/JavaScriptCore:

This patch deletes the existing implementation just to reduce binary size in releases of WebKit
which don't enable WebGPU by default. It doesn't represent a change in direction or policy or
anything regarding WebGPU. It's a (somewhat temporary) pragmatic change.

Our current implementation of WebGPU:
1. Is off by default on all platforms
2. Is extremely outdated
3. Has no notion of the GPU Process, and therefore needs to be redesigned and largely rewritten
4. Only implements a fraction of what is in the spec

Removing the code from the tree doesn't delete it from existence; it's still in source control.
The benefit of reducing binary size seems to outweigh having this code in the tree.

* inspector/protocol/Canvas.json:
* inspector/scripts/codegen/generator.py:

Source/WebCore:

No new tests because there is no behavior change.

* CMakeLists.txt:
* DerivedSources-input.xcfilelist:
* DerivedSources-output.xcfilelist:
* DerivedSources.make:
* Modules/webgpu/GPUBindGroupLayoutBinding.h: Removed.
* Modules/webgpu/GPUBindGroupLayoutBinding.idl: Removed.
* Modules/webgpu/GPUBindGroupLayoutDescriptor.h: Removed.
* Modules/webgpu/GPUBindGroupLayoutDescriptor.idl: Removed.
* Modules/webgpu/GPUBlendDescriptor.idl: Removed.
* Modules/webgpu/GPUBufferDescriptor.idl: Removed.
* Modules/webgpu/GPUBufferUsage.idl: Removed.
* Modules/webgpu/GPUCanvasContext.cpp: Removed.
* Modules/webgpu/GPUCanvasContext.h: Removed.
* Modules/webgpu/GPUCanvasContext.idl: Removed.
* Modules/webgpu/GPUColor.idl: Removed.
* Modules/webgpu/GPUColorStateDescriptor.idl: Removed.
* Modules/webgpu/GPUColorWrite.idl: Removed.
* Modules/webgpu/GPUCompareFunction.idl: Removed.
* Modules/webgpu/GPUDepthStencilStateDescriptor.idl: Removed.
* Modules/webgpu/GPUErrorFilter.idl: Removed.
* Modules/webgpu/GPUExtent3D.idl: Removed.
* Modules/webgpu/GPULoadOp.idl: Removed.
* Modules/webgpu/GPUOrigin3D.h: Removed.
* Modules/webgpu/GPUOrigin3D.idl: Removed.
* Modules/webgpu/GPUOutOfMemoryError.idl: Removed.
* Modules/webgpu/GPURequestAdapterOptions.idl: Removed.
* Modules/webgpu/GPUSamplerDescriptor.idl: Removed.
* Modules/webgpu/GPUShaderStage.h: Removed.
* Modules/webgpu/GPUShaderStage.idl: Removed.
* Modules/webgpu/GPUStoreOp.idl: Removed.
* Modules/webgpu/GPUTextureDescriptor.idl: Removed.
* Modules/webgpu/GPUTextureFormat.idl: Removed.
* Modules/webgpu/GPUTextureUsage.idl: Removed.
* Modules/webgpu/GPUUncapturedErrorEvent.cpp: Removed.
* Modules/webgpu/GPUUncapturedErrorEvent.h: Removed.
* Modules/webgpu/GPUUncapturedErrorEvent.idl: Removed.
* Modules/webgpu/GPUValidationError.idl: Removed.
* Modules/webgpu/GPUVertexAttributeDescriptor.idl: Removed.
* Modules/webgpu/GPUVertexBufferDescriptor.idl: Removed.
* Modules/webgpu/GPUVertexInputDescriptor.idl: Removed.
* Modules/webgpu/Navigator+GPU.idl: Removed.
* Modules/webgpu/NavigatorGPU.cpp: Removed.
* Modules/webgpu/NavigatorGPU.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLAST.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLAddressEscapeMode.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLAddressSpace.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLArrayReferenceType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLArrayType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBaseFunctionAttribute.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBaseSemantic.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBlock.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBooleanLiteral.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBreak.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBuiltInSemantic.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLBuiltInSemantic.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLCallExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLCommaExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLConstantExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLContinue.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLDefaultDelete.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLDereferenceExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLDoWhileLoop.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLDotExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLEffectfulExpressionStatement.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLEntryPointType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLEnumerationDefinition.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLEnumerationMember.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLEnumerationMemberLiteral.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLExpression.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFallthrough.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFloatLiteral.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFloatLiteralType.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFloatLiteralType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLForLoop.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFunctionAttribute.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFunctionDeclaration.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLFunctionDefinition.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLGlobalVariableReference.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLIfStatement.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLIndexExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLIntegerLiteral.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLIntegerLiteral.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLIntegerLiteralType.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLIntegerLiteralType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLLogicalExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLLogicalNotExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLMakeArrayReferenceExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLMakePointerExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLNameSpace.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLNamedType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLNativeFunctionDeclaration.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLNativeTypeDeclaration.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLNumThreadsFunctionAttribute.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLPointerType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLPropertyAccessExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLQualifier.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLReadModifyWriteExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLReferenceType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLReplaceWith.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLResolvableType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLResourceSemantic.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLResourceSemantic.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLReturn.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLSemantic.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLSpecializationConstantSemantic.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLSpecializationConstantSemantic.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLStageInOutSemantic.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLStageInOutSemantic.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLStatement.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLStructureDefinition.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLStructureElement.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLSwitchCase.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLSwitchStatement.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLTernaryExpression.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLTypeArgument.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLTypeArgument.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLTypeDefinition.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLTypeReference.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLTypeReference.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnnamedType.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnnamedType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnnamedTypeHash.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnsignedIntegerLiteral.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnsignedIntegerLiteral.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnsignedIntegerLiteralType.cpp: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLUnsignedIntegerLiteralType.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLVariableDeclaration.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLVariableDeclarationsStatement.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLVariableReference.h: Removed.
* Modules/webgpu/WHLSL/AST/WHLSLWhileLoop.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLEntryPointScaffolding.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLEntryPointScaffolding.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLFunctionWriter.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLFunctionWriter.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLMangledNames.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLMetalCodeGenerator.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLMetalCodeGenerator.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLNativeFunctionWriter.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLNativeFunctionWriter.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLNativeTypeWriter.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLNativeTypeWriter.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLTypeNamer.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLTypeNamer.h: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLVertexBufferIndexCalculator.cpp: Removed.
* Modules/webgpu/WHLSL/Metal/WHLSLVertexBufferIndexCalculator.h: Removed.
* Modules/webgpu/WHLSL/WHLSLASTDumper.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLASTDumper.h: Removed.
* Modules/webgpu/WHLSL/WHLSLBuildStandardLibraryFunctionMap.py: Removed.
* Modules/webgpu/WHLSL/WHLSLCheckDuplicateFunctions.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLCheckDuplicateFunctions.h: Removed.
* Modules/webgpu/WHLSL/WHLSLCheckReferenceTypes.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLCheckReferenceTypes.h: Removed.
* Modules/webgpu/WHLSL/WHLSLCheckTextureReferences.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLCheckTextureReferences.h: Removed.
* Modules/webgpu/WHLSL/WHLSLChecker.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLChecker.h: Removed.
* Modules/webgpu/WHLSL/WHLSLCodeLocation.h: Removed.
* Modules/webgpu/WHLSL/WHLSLComputeDimensions.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLComputeDimensions.h: Removed.
* Modules/webgpu/WHLSL/WHLSLError.h: Removed.
* Modules/webgpu/WHLSL/WHLSLFunctionStageChecker.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLFunctionStageChecker.h: Removed.
* Modules/webgpu/WHLSL/WHLSLGatherEntryPointItems.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLGatherEntryPointItems.h: Removed.
* Modules/webgpu/WHLSL/WHLSLHighZombieFinder.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLHighZombieFinder.h: Removed.
* Modules/webgpu/WHLSL/WHLSLInferTypes.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLInferTypes.h: Removed.
* Modules/webgpu/WHLSL/WHLSLIntrinsics.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLIntrinsics.h: Removed.
* Modules/webgpu/WHLSL/WHLSLLexer.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLLexer.h: Removed.
* Modules/webgpu/WHLSL/WHLSLLiteralTypeChecker.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLLiteralTypeChecker.h: Removed.
* Modules/webgpu/WHLSL/WHLSLNameContext.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLNameContext.h: Removed.
* Modules/webgpu/WHLSL/WHLSLNameResolver.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLNameResolver.h: Removed.
* Modules/webgpu/WHLSL/WHLSLParser.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLParser.h: Removed.
* Modules/webgpu/WHLSL/WHLSLParsingMode.h: Removed.
* Modules/webgpu/WHLSL/WHLSLPipelineDescriptor.h: Removed.
* Modules/webgpu/WHLSL/WHLSLPrepare.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLPrepare.h: Removed.
* Modules/webgpu/WHLSL/WHLSLPreserveVariableLifetimes.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLPreserveVariableLifetimes.h: Removed.
* Modules/webgpu/WHLSL/WHLSLProgram.h: Removed.
* Modules/webgpu/WHLSL/WHLSLPropertyResolver.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLPropertyResolver.h: Removed.
* Modules/webgpu/WHLSL/WHLSLPruneUnreachableStandardLibraryFunctions.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLPruneUnreachableStandardLibraryFunctions.h: Removed.
* Modules/webgpu/WHLSL/WHLSLRecursionChecker.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLRecursionChecker.h: Removed.
* Modules/webgpu/WHLSL/WHLSLRecursiveTypeChecker.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLRecursiveTypeChecker.h: Removed.
* Modules/webgpu/WHLSL/WHLSLResolveOverloadImpl.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLResolveOverloadImpl.h: Removed.
* Modules/webgpu/WHLSL/WHLSLResolvingType.h: Removed.
* Modules/webgpu/WHLSL/WHLSLScopedSetAdder.h: Removed.
* Modules/webgpu/WHLSL/WHLSLSemanticMatcher.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLSemanticMatcher.h: Removed.
* Modules/webgpu/WHLSL/WHLSLStandardLibrary.txt: Removed.
* Modules/webgpu/WHLSL/WHLSLStandardLibraryFunctionMap.h: Removed.
* Modules/webgpu/WHLSL/WHLSLStandardLibraryUtilities.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLStandardLibraryUtilities.h: Removed.
* Modules/webgpu/WHLSL/WHLSLStatementBehaviorChecker.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLStatementBehaviorChecker.h: Removed.
* Modules/webgpu/WHLSL/WHLSLSynthesizeConstructors.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLSynthesizeConstructors.h: Removed.
* Modules/webgpu/WHLSL/WHLSLSynthesizeEnumerationFunctions.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLSynthesizeEnumerationFunctions.h: Removed.
* Modules/webgpu/WHLSL/WHLSLVisitor.cpp: Removed.
* Modules/webgpu/WHLSL/WHLSLVisitor.h: Removed.
* Modules/webgpu/WebGPU.cpp: Removed.
* Modules/webgpu/WebGPU.h: Removed.
* Modules/webgpu/WebGPU.idl: Removed.
* Modules/webgpu/WebGPUAdapter.cpp: Removed.
* Modules/webgpu/WebGPUAdapter.h: Removed.
* Modules/webgpu/WebGPUAdapter.idl: Removed.
* Modules/webgpu/WebGPUBindGroup.cpp: Removed.
* Modules/webgpu/WebGPUBindGroup.h: Removed.
* Modules/webgpu/WebGPUBindGroup.idl: Removed.
* Modules/webgpu/WebGPUBindGroupBinding.h: Removed.
* Modules/webgpu/WebGPUBindGroupBinding.idl: Removed.
* Modules/webgpu/WebGPUBindGroupDescriptor.cpp: Removed.
* Modules/webgpu/WebGPUBindGroupDescriptor.h: Removed.
* Modules/webgpu/WebGPUBindGroupDescriptor.idl: Removed.
* Modules/webgpu/WebGPUBindGroupLayout.cpp: Removed.
* Modules/webgpu/WebGPUBindGroupLayout.h: Removed.
* Modules/webgpu/WebGPUBindGroupLayout.idl: Removed.
* Modules/webgpu/WebGPUBuffer.cpp: Removed.
* Modules/webgpu/WebGPUBuffer.h: Removed.
* Modules/webgpu/WebGPUBuffer.idl: Removed.
* Modules/webgpu/WebGPUBufferBinding.h: Removed.
* Modules/webgpu/WebGPUBufferBinding.idl: Removed.
* Modules/webgpu/WebGPUCommandBuffer.cpp: Removed.
* Modules/webgpu/WebGPUCommandBuffer.h: Removed.
* Modules/webgpu/WebGPUCommandBuffer.idl: Removed.
* Modules/webgpu/WebGPUCommandEncoder.cpp: Removed.
* Modules/webgpu/WebGPUCommandEncoder.h: Removed.
* Modules/webgpu/WebGPUCommandEncoder.idl: Removed.
* Modules/webgpu/WebGPUComputePassEncoder.cpp: Removed.
* Modules/webgpu/WebGPUComputePassEncoder.h: Removed.
* Modules/webgpu/WebGPUComputePassEncoder.idl: Removed.
* Modules/webgpu/WebGPUComputePipeline.cpp: Removed.
* Modules/webgpu/WebGPUComputePipeline.h: Removed.
* Modules/webgpu/WebGPUComputePipeline.idl: Removed.
* Modules/webgpu/WebGPUComputePipelineDescriptor.cpp: Removed.
* Modules/webgpu/WebGPUComputePipelineDescriptor.h: Removed.
* Modules/webgpu/WebGPUComputePipelineDescriptor.idl: Removed.
* Modules/webgpu/WebGPUDevice.cpp: Removed.
* Modules/webgpu/WebGPUDevice.h: Removed.
* Modules/webgpu/WebGPUDevice.idl: Removed.
* Modules/webgpu/WebGPUDeviceErrorScopes.cpp: Removed.
* Modules/webgpu/WebGPUDeviceErrorScopes.h: Removed.
* Modules/webgpu/WebGPUDeviceErrorScopes.idl: Removed.
* Modules/webgpu/WebGPUDeviceEventHandler.idl: Removed.
* Modules/webgpu/WebGPUPipeline.cpp: Removed.
* Modules/webgpu/WebGPUPipeline.h: Removed.
* Modules/webgpu/WebGPUPipelineDescriptorBase.h: Removed.
* Modules/webgpu/WebGPUPipelineDescriptorBase.idl: Removed.
* Modules/webgpu/WebGPUPipelineLayout.cpp: Removed.
* Modules/webgpu/WebGPUPipelineLayout.h: Removed.
* Modules/webgpu/WebGPUPipelineLayout.idl: Removed.
* Modules/webgpu/WebGPUPipelineLayoutDescriptor.cpp: Removed.
* Modules/webgpu/WebGPUPipelineLayoutDescriptor.h: Removed.
* Modules/webgpu/WebGPUPipelineLayoutDescriptor.idl: Removed.
* Modules/webgpu/WebGPUProgrammablePassEncoder.cpp: Removed.
* Modules/webgpu/WebGPUProgrammablePassEncoder.h: Removed.
* Modules/webgpu/WebGPUProgrammablePassEncoder.idl: Removed.
* Modules/webgpu/WebGPUProgrammableStageDescriptor.cpp: Removed.
* Modules/webgpu/WebGPUProgrammableStageDescriptor.h: Removed.
* Modules/webgpu/WebGPUProgrammableStageDescriptor.idl: Removed.
* Modules/webgpu/WebGPUQueue.cpp: Removed.
* Modules/webgpu/WebGPUQueue.h: Removed.
* Modules/webgpu/WebGPUQueue.idl: Removed.
* Modules/webgpu/WebGPURenderPassDescriptor.cpp: Removed.
* Modules/webgpu/WebGPURenderPassDescriptor.h: Removed.
* Modules/webgpu/WebGPURenderPassDescriptor.idl: Removed.
* Modules/webgpu/WebGPURenderPassEncoder.cpp: Removed.
* Modules/webgpu/WebGPURenderPassEncoder.h: Removed.
* Modules/webgpu/WebGPURenderPassEncoder.idl: Removed.
* Modules/webgpu/WebGPURenderPipeline.cpp: Removed.
* Modules/webgpu/WebGPURenderPipeline.h: Removed.
* Modules/webgpu/WebGPURenderPipeline.idl: Removed.
* Modules/webgpu/WebGPURenderPipelineDescriptor.cpp: Removed.
* Modules/webgpu/WebGPURenderPipelineDescriptor.h: Removed.
* Modules/webgpu/WebGPURenderPipelineDescriptor.idl: Removed.
* Modules/webgpu/WebGPUSampler.cpp: Removed.
* Modules/webgpu/WebGPUSampler.h: Removed.
* Modules/webgpu/WebGPUSampler.idl: Removed.
* Modules/webgpu/WebGPUShaderModule.cpp: Removed.
* Modules/webgpu/WebGPUShaderModule.h: Removed.
* Modules/webgpu/WebGPUShaderModule.idl: Removed.
* Modules/webgpu/WebGPUShaderModuleDescriptor.h: Removed.
* Modules/webgpu/WebGPUShaderModuleDescriptor.idl: Removed.
* Modules/webgpu/WebGPUSwapChain.cpp: Removed.
* Modules/webgpu/WebGPUSwapChain.h: Removed.
* Modules/webgpu/WebGPUSwapChain.idl: Removed.
* Modules/webgpu/WebGPUSwapChainDescriptor.cpp: Removed.
* Modules/webgpu/WebGPUSwapChainDescriptor.h: Removed.
* Modules/webgpu/WebGPUTexture.cpp: Removed.
* Modules/webgpu/WebGPUTexture.h: Removed.
* Modules/webgpu/WebGPUTexture.idl: Removed.
* Modules/webgpu/WebGPUTextureView.cpp: Removed.
* Modules/webgpu/WebGPUTextureView.h: Removed.
* Modules/webgpu/WebGPUTextureView.idl: Removed.
* Modules/webgpu/WorkerNavigator+GPU.idl: Removed.
* Modules/webgpu/WorkerNavigatorGPU.cpp: Removed.
* Modules/webgpu/WorkerNavigatorGPU.h: Removed.
* Sources.txt:
* SourcesCocoa.txt:
* WebCore.xcodeproj/project.pbxproj:
* bindings/js/WebCoreBuiltinNames.h:
* dom/Document.cpp:
(WebCore::Document::getCSSCanvasContext):
* dom/Document.h:
* dom/Document.idl:
* dom/EventNames.in:
* dom/EventTargetFactory.in:
* html/HTMLCanvasElement.cpp:
(WebCore::HTMLCanvasElement::getContext):
(WebCore::HTMLCanvasElement::isWebGPUType): Deleted.
(WebCore::HTMLCanvasElement::createContextWebGPU): Deleted.
(WebCore::HTMLCanvasElement::getContextWebGPU): Deleted.
* html/HTMLCanvasElement.h:
* html/HTMLCanvasElement.idl:
* html/canvas/CanvasRenderingContext.h:
(WebCore::CanvasRenderingContext::isWebGL const):
(WebCore::CanvasRenderingContext::isWebGPU const): Deleted.
* inspector/InspectorCanvas.cpp:
(WebCore::InspectorCanvas::InspectorCanvas):
(WebCore::InspectorCanvas::canvasElement const):
(WebCore::InspectorCanvas::scriptExecutionContext const):
(WebCore::InspectorCanvas::resolveContext const):
(WebCore:: const):
(WebCore::InspectorCanvas::resetRecordingData):
(WebCore::InspectorCanvas::recordAction):
(WebCore::InspectorCanvas::buildObjectForCanvas):
(WebCore::InspectorCanvas::releaseObjectForRecording):
(WebCore::InspectorCanvas::buildInitialState):
(WebCore::canvasIfContextMatchesDevice): Deleted.
(WebCore::InspectorCanvas::deviceContext const): Deleted.
(WebCore::InspectorCanvas::isDeviceForCanvasContext const): Deleted.
* inspector/InspectorCanvas.h:
* inspector/InspectorInstrumentation.cpp:
(WebCore::InspectorInstrumentation::didCreateWebGPUDeviceImpl): Deleted.
(WebCore::InspectorInstrumentation::willDestroyWebGPUDeviceImpl): Deleted.
(WebCore::InspectorInstrumentation::willConfigureSwapChainImpl): Deleted.
(WebCore::InspectorInstrumentation::didCreateWebGPUPipelineImpl): Deleted.
(WebCore::InspectorInstrumentation::willDestroyWebGPUPipelineImpl): Deleted.
* inspector/InspectorInstrumentation.h:
(WebCore::InspectorInstrumentation::didCreateWebGPUDevice): Deleted.
(WebCore::InspectorInstrumentation::willDestroyWebGPUDevice): Deleted.
(WebCore::InspectorInstrumentation::willConfigureSwapChain): Deleted.
(WebCore::InspectorInstrumentation::didCreateWebGPUPipeline): Deleted.
(WebCore::InspectorInstrumentation::willDestroyWebGPUPipeline): Deleted.
* inspector/InspectorShaderProgram.cpp:
(WebCore::InspectorShaderProgram::requestShaderSource):
(WebCore::InspectorShaderProgram::updateShader):
(WebCore::InspectorShaderProgram::buildObjectForShaderProgram):
(WebCore::InspectorShaderProgram::pipeline const): Deleted.
* inspector/InspectorShaderProgram.h:
* inspector/agents/InspectorCanvasAgent.cpp:
(WebCore::InspectorCanvasAgent::InspectorCanvasAgent):
(WebCore::InspectorCanvasAgent::enable):
(WebCore::InspectorCanvasAgent::startRecording):
(WebCore::InspectorCanvasAgent::stopRecording):
(WebCore::InspectorCanvasAgent::didChangeCanvasMemory):
(WebCore::InspectorCanvasAgent::recordAction):
(WebCore::InspectorCanvasAgent::reset):
(WebCore::InspectorCanvasAgent::didCreateWebGPUDevice): Deleted.
(WebCore::InspectorCanvasAgent::willDestroyWebGPUDevice): Deleted.
(WebCore::InspectorCanvasAgent::willConfigureSwapChain): Deleted.
(WebCore::InspectorCanvasAgent::didCreateWebGPUPipeline): Deleted.
(WebCore::InspectorCanvasAgent::willDestroyWebGPUPipeline): Deleted.
* inspector/agents/InspectorCanvasAgent.h:
* page/ProcessWarming.cpp:
(WebCore::ProcessWarming::prewarmGlobally):
* platform/Logging.h:
* platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:
(WebCore::PlatformCALayerCocoa::layerTypeForPlatformLayer):
(WebCore::PlatformCALayerCocoa::PlatformCALayerCocoa):
* platform/graphics/cocoa/WebGPULayer.h: Removed.
* platform/graphics/cocoa/WebGPULayer.mm: Removed.
* platform/graphics/gpu/GPUBindGroup.h: Removed.
* platform/graphics/gpu/GPUBindGroupAllocator.h: Removed.
* platform/graphics/gpu/GPUBindGroupBinding.h: Removed.
* platform/graphics/gpu/GPUBindGroupDescriptor.h: Removed.
* platform/graphics/gpu/GPUBindGroupLayout.h: Removed.
* platform/graphics/gpu/GPUBlendDescriptor.h: Removed.
* platform/graphics/gpu/GPUBuffer.cpp: Removed.
* platform/graphics/gpu/GPUBuffer.h: Removed.
* platform/graphics/gpu/GPUBufferBinding.h: Removed.
* platform/graphics/gpu/GPUBufferDescriptor.h: Removed.
* platform/graphics/gpu/GPUBufferUsage.h: Removed.
* platform/graphics/gpu/GPUColor.h: Removed.
* platform/graphics/gpu/GPUColorStateDescriptor.h: Removed.
* platform/graphics/gpu/GPUColorWrite.h: Removed.
* platform/graphics/gpu/GPUCommandBuffer.h: Removed.
* platform/graphics/gpu/GPUCompareFunction.h: Removed.
* platform/graphics/gpu/GPUComputePassEncoder.h: Removed.
* platform/graphics/gpu/GPUComputePipeline.h: Removed.
* platform/graphics/gpu/GPUComputePipelineDescriptor.h: Removed.
* platform/graphics/gpu/GPUDepthStencilStateDescriptor.h: Removed.
* platform/graphics/gpu/GPUDevice.cpp: Removed.
* platform/graphics/gpu/GPUDevice.h:
(WebCore::GPUDevice::platformDevice const): Deleted.
(WebCore::GPUDevice::swapChain const): Deleted.
(WebCore::GPUDevice::setErrorScopes): Deleted.
* platform/graphics/gpu/GPUError.cpp: Removed.
* platform/graphics/gpu/GPUError.h: Removed.
* platform/graphics/gpu/GPUErrorFilter.h: Removed.
* platform/graphics/gpu/GPUErrorScopes.cpp: Removed.
* platform/graphics/gpu/GPUErrorScopes.h: Removed.
* platform/graphics/gpu/GPUExtent3D.h: Removed.
* platform/graphics/gpu/GPULimits.h: Removed.
* platform/graphics/gpu/GPULoadOp.h: Removed.
* platform/graphics/gpu/GPUObjectBase.h: Removed.
* platform/graphics/gpu/GPUOutOfMemoryError.h: Removed.
* platform/graphics/gpu/GPUPipeline.cpp: Removed.
* platform/graphics/gpu/GPUPipeline.h: Removed.
* platform/graphics/gpu/GPUPipelineDescriptorBase.h: Removed.
* platform/graphics/gpu/GPUPipelineLayout.cpp: Removed.
* platform/graphics/gpu/GPUPipelineLayout.h: Removed.
* platform/graphics/gpu/GPUPipelineLayoutDescriptor.h: Removed.
* platform/graphics/gpu/GPUPlatformTypes.h: Removed.
* platform/graphics/gpu/GPUProgrammablePassEncoder.cpp: Removed.
* platform/graphics/gpu/GPUProgrammablePassEncoder.h: Removed.
* platform/graphics/gpu/GPUProgrammableStageDescriptor.h: Removed.
* platform/graphics/gpu/GPUQueue.h: Removed.
* platform/graphics/gpu/GPURenderPassDescriptor.h: Removed.
* platform/graphics/gpu/GPURenderPassEncoder.h: Removed.
* platform/graphics/gpu/GPURenderPipeline.h: Removed.
* platform/graphics/gpu/GPURenderPipelineDescriptor.h: Removed.
* platform/graphics/gpu/GPURequestAdapterOptions.h: Removed.
* platform/graphics/gpu/GPUSampler.h: Removed.
* platform/graphics/gpu/GPUSamplerDescriptor.h: Removed.
* platform/graphics/gpu/GPUShaderModule.h: Removed.
* platform/graphics/gpu/GPUShaderModuleDescriptor.h: Removed.
* platform/graphics/gpu/GPUStoreOp.h: Removed.
* platform/graphics/gpu/GPUSwapChain.h: Removed.
* platform/graphics/gpu/GPUSwapChainDescriptor.h: Removed.
* platform/graphics/gpu/GPUTexture.h: Removed.
* platform/graphics/gpu/GPUTextureDescriptor.h: Removed.
* platform/graphics/gpu/GPUTextureFormat.h: Removed.
* platform/graphics/gpu/GPUTextureUsage.h: Removed.
* platform/graphics/gpu/GPUUtils.h: Removed.
* platform/graphics/gpu/GPUValidationError.cpp: Removed.
* platform/graphics/gpu/GPUValidationError.h: Removed.
* platform/graphics/gpu/GPUVertexAttributeDescriptor.h: Removed.
* platform/graphics/gpu/GPUVertexBufferDescriptor.h: Removed.
* platform/graphics/gpu/GPUVertexInputDescriptor.h: Removed.
* platform/graphics/gpu/cocoa/GPUBindGroupAllocatorMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUBindGroupLayoutMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUBindGroupMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUBufferMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUCommandBufferMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUComputePassEncoderMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUComputePipelineMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUDeviceMetal.mm:
(WebCore::prewarmGPU):
(WebCore::isAcceptableDevice): Deleted.
(WebCore::GPUDevice::prewarm): Deleted.
(WebCore::GPUDevice::tryCreate): Deleted.
(WebCore::GPUDevice::GPUDevice): Deleted.
* platform/graphics/gpu/cocoa/GPUPipelineMetalConvertLayout.cpp: Removed.
* platform/graphics/gpu/cocoa/GPUPipelineMetalConvertLayout.h: Removed.
* platform/graphics/gpu/cocoa/GPUPlatformTypesMetal.h: Removed.
* platform/graphics/gpu/cocoa/GPUProgrammablePassEncoderMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUQueueMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPURenderPassEncoderMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPURenderPipelineMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUSamplerMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUShaderModuleMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUSwapChainMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUTextureMetal.mm: Removed.
* platform/graphics/gpu/cocoa/GPUUtilsMetal.mm: Removed.
* platform/graphics/gpu/dawn/GPUBindGroupAllocatorDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUBindGroupDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUBindGroupLayoutDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUBufferDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUCommandBufferDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUComputePassEncoderDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUComputePipelineDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUDeviceDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUPlatformTypesDawn.h: Removed.
* platform/graphics/gpu/dawn/GPUProgrammablePassEncoderDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUQueueDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPURenderPassEncoderDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPURenderPipelineDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUSamplerDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUShaderModuleDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUSwapChainDawn.cpp: Removed.
* platform/graphics/gpu/dawn/GPUTextureDawn.cpp: Removed.
* platform/ios/DragImageIOS.mm:
* platform/mediastream/mac/WindowDisplayCapturerMac.mm:
* rendering/RenderLayerBacking.cpp:
(WebCore::RenderLayerBacking::updateConfiguration):
(WebCore::RenderLayerBacking::contentChanged):

Source/WebKit:

* FeatureFlags/WebKit-appletvos.plist:
* FeatureFlags/WebKit-ios.plist:
* FeatureFlags/WebKit-macos.plist:
* FeatureFlags/WebKit-watchos.plist:
* Shared/WebPreferencesDefaultValues.cpp:
(WebKit::defaultWebGPUEnabled): Deleted.
* Shared/WebPreferencesDefaultValues.h:

Source/WebKitLegacy/mac:

* WebView/WebPreferenceKeysPrivate.h:
* WebView/WebPreferences.mm:
(-[WebPreferences webGPUEnabled]): Deleted.
(-[WebPreferences setWebGPUEnabled:]): Deleted.
* WebView/WebPreferencesDefaultValues.h:
* WebView/WebPreferencesDefaultValues.mm:
(WebKit::defaultWebGPUEnabled): Deleted.
* WebView/WebPreferencesPrivate.h:

Source/WTF:

* Scripts/Preferences/WebPreferencesExperimental.yaml:
* wtf/PlatformEnable.h:
* wtf/PlatformEnableCocoa.h:

LayoutTests:

* TestExpectations:
* fast/dom/navigator-detached-no-crash-expected.txt:
* inspector/canvas/create-context-webgpu-expected.txt: Removed.
* inspector/canvas/create-context-webgpu.html: Removed.
* inspector/canvas/requestClientNodes-webgpu-expected.txt: Removed.
* inspector/canvas/requestClientNodes-webgpu.html: Removed.
* inspector/canvas/requestShaderSource-webgpu-expected.txt: Removed.
* inspector/canvas/requestShaderSource-webgpu.html: Removed.
* inspector/canvas/resolveContext-webgpu-expected.txt: Removed.
* inspector/canvas/resolveContext-webgpu.html: Removed.
* inspector/canvas/shaderProgram-add-remove-webgpu-expected.txt: Removed.
* inspector/canvas/shaderProgram-add-remove-webgpu.html: Removed.
* inspector/canvas/updateShader-webgpu-expected.txt: Removed.
* inspector/canvas/updateShader-webgpu-sharedVertexFragment-expected.txt: Removed.
* inspector/canvas/updateShader-webgpu-sharedVertexFragment.html: Removed.
* inspector/canvas/updateShader-webgpu.html: Removed.
* platform/glib/TestExpectations:
* platform/ios/TestExpectations:
* platform/mac-wk1/TestExpectations:
* platform/mac-wk2/TestExpectations:
* platform/mac-wk2/fast/dom/navigator-detached-no-crash-expected.txt:
* platform/mac/TestExpectations:
* platform/win/TestExpectations:
* webgpu/bind-groups-expected.txt: Removed.
* webgpu/bind-groups.html: Removed.
* webgpu/blend-color-triangle-strip-expected.html: Removed.
* webgpu/blend-color-triangle-strip.html: Removed.
* webgpu/blend-triangle-strip-expected.html: Removed.
* webgpu/blend-triangle-strip.html: Removed.
* webgpu/blit-commands-expected.html: Removed.
* webgpu/blit-commands-texture-to-texture-expected.html: Removed.
* webgpu/blit-commands-texture-to-texture.html: Removed.
* webgpu/blit-commands.html: Removed.
* webgpu/buffer-command-buffer-races-expected.html: Removed.
* webgpu/buffer-command-buffer-races.html: Removed.
* webgpu/buffer-errors-expected.txt: Removed.
* webgpu/buffer-errors.html: Removed.
* webgpu/color-write-mask-triangle-strip-expected.html: Removed.
* webgpu/color-write-mask-triangle-strip.html: Removed.
* webgpu/command-buffers-expected.txt: Removed.
* webgpu/command-buffers.html: Removed.
* webgpu/compute-pipeline-errors-expected.txt: Removed.
* webgpu/compute-pipeline-errors.html: Removed.
* webgpu/depth-enabled-triangle-strip-expected.html: Removed.
* webgpu/depth-enabled-triangle-strip.html: Removed.
* webgpu/draw-indexed-triangles-expected.html: Removed.
* webgpu/draw-indexed-triangles.html: Removed.
* webgpu/error-scopes-test-expected.txt: Removed.
* webgpu/error-scopes-test.html: Removed.
* webgpu/expando-properties-expected.txt: Removed.
* webgpu/expando-properties.html: Removed.
* webgpu/js/webgpu-functions.js: Removed.
* webgpu/map-read-buffers-expected.txt: Removed.
* webgpu/map-read-buffers.html: Removed.
* webgpu/map-write-buffers-expected.txt: Removed.
* webgpu/map-write-buffers.html: Removed.
* webgpu/pipeline-layouts-expected.txt: Removed.
* webgpu/pipeline-layouts.html: Removed.
* webgpu/queue-creation-expected.txt: Removed.
* webgpu/queue-creation.html: Removed.
* webgpu/render-command-encoding-expected.txt: Removed.
* webgpu/render-command-encoding.html: Removed.
* webgpu/render-pipeline-errors-expected.txt: Removed.
* webgpu/render-pipeline-errors.html: Removed.
* webgpu/render-pipelines-expected.txt: Removed.
* webgpu/render-pipelines.html: Removed.
* webgpu/resources/blue-checkered.png: Removed.
* webgpu/resources/green-400.png: Removed.
* webgpu/shader-modules-expected.txt: Removed.
* webgpu/shader-modules.html: Removed.
* webgpu/simple-triangle-strip-expected.html: Removed.
* webgpu/simple-triangle-strip.html: Removed.
* webgpu/texture-creation-expected.txt: Removed.
* webgpu/texture-creation.html: Removed.
* webgpu/texture-triangle-strip-expected.html: Removed.
* webgpu/texture-triangle-strip.html: Removed.
* webgpu/textures-textureviews-expected.txt: Removed.
* webgpu/textures-textureviews.html: Removed.
* webgpu/uncaptured-errors-expected.txt: Removed.
* webgpu/uncaptured-errors.html: Removed.
* webgpu/vertex-buffer-triangle-strip-expected.html: Removed.
* webgpu/vertex-buffer-triangle-strip.html: Removed.
* webgpu/viewport-scissor-rect-triangle-strip-expected.html: Removed.
* webgpu/viewport-scissor-rect-triangle-strip.html: Removed.
* webgpu/whlsl/address-of-swizzle-expected.txt: Removed.
* webgpu/whlsl/address-of-swizzle.html: Removed.
* webgpu/whlsl/arbitrary-vertex-attribute-locations-expected.html: Removed.
* webgpu/whlsl/arbitrary-vertex-attribute-locations.html: Removed.
* webgpu/whlsl/argument-evaluation-order-expected.txt: Removed.
* webgpu/whlsl/argument-evaluation-order.html: Removed.
* webgpu/whlsl/array-length-spec-tests-expected.txt: Removed.
* webgpu/whlsl/array-length-spec-tests.html: Removed.
* webgpu/whlsl/array-oob-alias-expected.txt: Removed.
* webgpu/whlsl/array-oob-alias.html: Removed.
* webgpu/whlsl/array-spec-tests-expected.txt: Removed.
* webgpu/whlsl/array-spec-tests.html: Removed.
* webgpu/whlsl/bad-add-expected.txt: Removed.
* webgpu/whlsl/bad-add.html: Removed.
* webgpu/whlsl/bad-literals-expected.txt: Removed.
* webgpu/whlsl/bad-literals.html: Removed.
* webgpu/whlsl/bitwise-bool-ops-expected.txt: Removed.
* webgpu/whlsl/bitwise-bool-ops.html: Removed.
* webgpu/whlsl/bool-matrix-expected.txt: Removed.
* webgpu/whlsl/bool-matrix.html: Removed.
* webgpu/whlsl/bools-expected.txt: Removed.
* webgpu/whlsl/bools.html: Removed.
* webgpu/whlsl/buffer-fragment-expected.html: Removed.
* webgpu/whlsl/buffer-fragment.html: Removed.
* webgpu/whlsl/buffer-length-expected.txt: Removed.
* webgpu/whlsl/buffer-length.html: Removed.
* webgpu/whlsl/buffer-vertex-expected.html: Removed.
* webgpu/whlsl/buffer-vertex.html: Removed.
* webgpu/whlsl/builtin-vectors-2-expected.txt: Removed.
* webgpu/whlsl/builtin-vectors-2.html: Removed.
* webgpu/whlsl/builtin-vectors-expected.txt: Removed.
* webgpu/whlsl/builtin-vectors.html: Removed.
* webgpu/whlsl/casts-expected.txt: Removed.
* webgpu/whlsl/casts.html: Removed.
* webgpu/whlsl/checker-should-set-type-of-read-modify-write-variables-expected.txt: Removed.
* webgpu/whlsl/checker-should-set-type-of-read-modify-write-variables.html: Removed.
* webgpu/whlsl/clamp-stdlib-expected.txt: Removed.
* webgpu/whlsl/clamp-stdlib.html: Removed.
* webgpu/whlsl/comment-parsing-expected.txt: Removed.
* webgpu/whlsl/comment-parsing.html: Removed.
* webgpu/whlsl/compute-expected.txt: Removed.
* webgpu/whlsl/compute.html: Removed.
* webgpu/whlsl/copy-expected.txt: Removed.
* webgpu/whlsl/copy.html: Removed.
* webgpu/whlsl/dereference-ordering-expected.txt: Removed.
* webgpu/whlsl/dereference-ordering.html: Removed.
* webgpu/whlsl/dereference-pointer-should-type-check-expected.html: Removed.
* webgpu/whlsl/dereference-pointer-should-type-check.html: Removed.
* webgpu/whlsl/device-proper-type-checker-expected.txt: Removed.
* webgpu/whlsl/device-proper-type-checker.html: Removed.
* webgpu/whlsl/do-while-loop-break-expected.html: Removed.
* webgpu/whlsl/do-while-loop-break.html: Removed.
* webgpu/whlsl/do-while-loop-continue-expected.html: Removed.
* webgpu/whlsl/do-while-loop-continue.html: Removed.
* webgpu/whlsl/do-while-loop-expected.html: Removed.
* webgpu/whlsl/do-while-loop.html: Removed.
* webgpu/whlsl/dont-crash-parsing-enum-expected.html: Removed.
* webgpu/whlsl/dont-crash-parsing-enum.html: Removed.
* webgpu/whlsl/dot-expressions-expected.html: Removed.
* webgpu/whlsl/dot-expressions.html: Removed.
* webgpu/whlsl/double-not-expected.txt: Removed.
* webgpu/whlsl/double-not.html: Removed.
* webgpu/whlsl/duplicate-types-should-not-produce-duplicate-ctors-expected.txt: Removed.
* webgpu/whlsl/duplicate-types-should-not-produce-duplicate-ctors.html: Removed.
* webgpu/whlsl/duplicates-expected.txt: Removed.
* webgpu/whlsl/duplicates.html: Removed.
* webgpu/whlsl/ensure-proper-pointer-usage-expected.txt: Removed.
* webgpu/whlsl/ensure-proper-pointer-usage.html: Removed.
* webgpu/whlsl/ensure-proper-variable-lifetime-2-expected.html: Removed.
* webgpu/whlsl/ensure-proper-variable-lifetime-2.html: Removed.
* webgpu/whlsl/ensure-proper-variable-lifetime-3-expected.html: Removed.
* webgpu/whlsl/ensure-proper-variable-lifetime-3.html: Removed.
* webgpu/whlsl/ensure-proper-variable-lifetime-expected.html: Removed.
* webgpu/whlsl/ensure-proper-variable-lifetime.html: Removed.
* webgpu/whlsl/enum-integer-constructor-expected.txt: Removed.
* webgpu/whlsl/enum-integer-constructor.html: Removed.
* webgpu/whlsl/enum-spec-tests-expected.txt: Removed.
* webgpu/whlsl/enum-spec-tests.html: Removed.
* webgpu/whlsl/enums-2-expected.txt: Removed.
* webgpu/whlsl/enums-2.html: Removed.
* webgpu/whlsl/enums-expected.txt: Removed.
* webgpu/whlsl/enums.html: Removed.
* webgpu/whlsl/equality-expected.txt: Removed.
* webgpu/whlsl/equality.html: Removed.
* webgpu/whlsl/float-math-expected.txt: Removed.
* webgpu/whlsl/float-math.html: Removed.
* webgpu/whlsl/getter-setter-type-expected.txt: Removed.
* webgpu/whlsl/getter-setter-type.html: Removed.
* webgpu/whlsl/huge-array-expected.txt: Removed.
* webgpu/whlsl/huge-array.html: Removed.
* webgpu/whlsl/if-statement-expected.txt: Removed.
* webgpu/whlsl/if-statement.html: Removed.
* webgpu/whlsl/increment-decrement-expected.txt: Removed.
* webgpu/whlsl/increment-decrement.html: Removed.
* webgpu/whlsl/increment-setter-expected.txt: Removed.
* webgpu/whlsl/increment-setter.html: Removed.
* webgpu/whlsl/index-getter-setter-expected.txt: Removed.
* webgpu/whlsl/index-getter-setter.html: Removed.
* webgpu/whlsl/int-bit-math-expected.txt: Removed.
* webgpu/whlsl/int-bit-math.html: Removed.
* webgpu/whlsl/int-literal-compare-expected.txt: Removed.
* webgpu/whlsl/int-literal-compare.html: Removed.
* webgpu/whlsl/js/test-harness.js: Removed.
* webgpu/whlsl/length-stdlib-expected.txt: Removed.
* webgpu/whlsl/length-stdlib.html: Removed.
* webgpu/whlsl/lexing-expected.txt: Removed.
* webgpu/whlsl/lexing.html: Removed.
* webgpu/whlsl/literals-expected.txt: Removed.
* webgpu/whlsl/literals.html: Removed.
* webgpu/whlsl/logical-negation-expected.txt: Removed.
* webgpu/whlsl/logical-negation.html: Removed.
* webgpu/whlsl/loops-break-expected.html: Removed.
* webgpu/whlsl/loops-break.html: Removed.
* webgpu/whlsl/loops-continue-expected.html: Removed.
* webgpu/whlsl/loops-continue.html: Removed.
* webgpu/whlsl/loops-expected.html: Removed.
* webgpu/whlsl/loops-spec-tests-expected.txt: Removed.
* webgpu/whlsl/loops-spec-tests.html: Removed.
* webgpu/whlsl/loops.html: Removed.
* webgpu/whlsl/lots-of-local-variables-expected.txt: Removed.
* webgpu/whlsl/lots-of-local-variables.html: Removed.
* webgpu/whlsl/lvalues-expected.txt: Removed.
* webgpu/whlsl/lvalues.html: Removed.
* webgpu/whlsl/make-array-ref-spec-tests-expected.txt: Removed.
* webgpu/whlsl/make-array-ref-spec-tests.html: Removed.
* webgpu/whlsl/make-array-reference-expected.txt: Removed.
* webgpu/whlsl/make-array-reference.html: Removed.
* webgpu/whlsl/matrices-spec-tests-expected.txt: Removed.
* webgpu/whlsl/matrices-spec-tests.html: Removed.
* webgpu/whlsl/matrix-2-expected.txt: Removed.
* webgpu/whlsl/matrix-2.html: Removed.
* webgpu/whlsl/matrix-alignment-expected.txt: Removed.
* webgpu/whlsl/matrix-alignment.html: Removed.
* webgpu/whlsl/matrix-compare-expected.txt: Removed.
* webgpu/whlsl/matrix-compare.html: Removed.
* webgpu/whlsl/matrix-constructors-expected.txt: Removed.
* webgpu/whlsl/matrix-constructors-list-of-scalars-expected.txt: Removed.
* webgpu/whlsl/matrix-constructors-list-of-scalars.html: Removed.
* webgpu/whlsl/matrix-constructors.html: Removed.
* webgpu/whlsl/matrix-expected.txt: Removed.
* webgpu/whlsl/matrix-index-assign-expected.txt: Removed.
* webgpu/whlsl/matrix-index-assign.html: Removed.
* webgpu/whlsl/matrix-index-order-expected.txt: Removed.
* webgpu/whlsl/matrix-index-order.html: Removed.
* webgpu/whlsl/matrix-memory-layout-expected.txt: Removed.
* webgpu/whlsl/matrix-memory-layout.html: Removed.
* webgpu/whlsl/matrix.html: Removed.
* webgpu/whlsl/nested-dot-expression-rvalue-expected.html: Removed.
* webgpu/whlsl/nested-dot-expression-rvalue.html: Removed.
* webgpu/whlsl/nested-loop-expected.html: Removed.
* webgpu/whlsl/nested-loop.html: Removed.
* webgpu/whlsl/null-arg-expected.txt: Removed.
* webgpu/whlsl/null-arg.html: Removed.
* webgpu/whlsl/null-array-property-access-expected.txt: Removed.
* webgpu/whlsl/null-array-property-access.html: Removed.
* webgpu/whlsl/null-array-ref.html: Removed.
* webgpu/whlsl/oob-access-2-expected.txt: Removed.
* webgpu/whlsl/oob-access-2.html: Removed.
* webgpu/whlsl/oob-access-expected.txt: Removed.
* webgpu/whlsl/oob-access.html: Removed.
* webgpu/whlsl/operator-div-expected.txt: Removed.
* webgpu/whlsl/operator-div.html: Removed.
* webgpu/whlsl/operator-equal-equal-expected.txt: Removed.
* webgpu/whlsl/operator-equal-equal.html: Removed.
* webgpu/whlsl/operator-minus-expected.txt: Removed.
* webgpu/whlsl/operator-minus.html: Removed.
* webgpu/whlsl/operator-overload-expected.txt: Removed.
* webgpu/whlsl/operator-overload.html: Removed.
* webgpu/whlsl/operator-plus-expected.txt: Removed.
* webgpu/whlsl/operator-plus.html: Removed.
* webgpu/whlsl/operator-syntax-expected.txt: Removed.
* webgpu/whlsl/operator-syntax.html: Removed.
* webgpu/whlsl/operator-times-expected.txt: Removed.
* webgpu/whlsl/operator-times.html: Removed.
* webgpu/whlsl/operator-vector-assign-expected.txt: Removed.
* webgpu/whlsl/operator-vector-assign.html: Removed.
* webgpu/whlsl/operator-vector-load-expected.txt: Removed.
* webgpu/whlsl/operator-vector-load.html: Removed.
* webgpu/whlsl/operator-xy-expected.txt: Removed.
* webgpu/whlsl/operator-xy.html: Removed.
* webgpu/whlsl/overload-expected.txt: Removed.
* webgpu/whlsl/overload.html: Removed.
* webgpu/whlsl/plus-equals-expected.txt: Removed.
* webgpu/whlsl/plus-equals.html: Removed.
* webgpu/whlsl/pointer-spec-tests-expected.txt: Removed.
* webgpu/whlsl/pointer-spec-tests.html: Removed.
* webgpu/whlsl/postfix-prefix-expected.txt: Removed.
* webgpu/whlsl/postfix-prefix.html: Removed.
* webgpu/whlsl/property-evaluation-order-expected.txt: Removed.
* webgpu/whlsl/property-evaluation-order.html: Removed.
* webgpu/whlsl/read-modify-write-expected.txt: Removed.
* webgpu/whlsl/read-modify-write-high-zombies-expected.txt: Removed.
* webgpu/whlsl/read-modify-write-high-zombies.html: Removed.
* webgpu/whlsl/read-modify-write.html: Removed.
* webgpu/whlsl/recursive-structs-expected.txt: Removed.
* webgpu/whlsl/recursive-structs.html: Removed.
* webgpu/whlsl/return-local-variable-expected.html: Removed.
* webgpu/whlsl/return-local-variable.html: Removed.
* webgpu/whlsl/return-spec-tests-expected.txt: Removed.
* webgpu/whlsl/return-spec-tests.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-10-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-10.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-11-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-11.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-12-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-12.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-13-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-13.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-14-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-14.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-15-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-15.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-16-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-16.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-17-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-17.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-18-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-18.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-19-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-19.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-2-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-2.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-20-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-20.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-21-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-21.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-22-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-22.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-23-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-23.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-24-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-24.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-25-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-25.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-26-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-26.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-27-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-27.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-3-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-3.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-4-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-4.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-5-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-5.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-6-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-6.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-7-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-7.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-8-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-8.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-9-expected.txt: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-9.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules-expected.html: Removed.
* webgpu/whlsl/separate-shader-modules/separate-shader-modules.html: Removed.
* webgpu/whlsl/setter-spec-tests-expected.txt: Removed.
* webgpu/whlsl/setter-spec-tests.html: Removed.
* webgpu/whlsl/simple-arrays-expected.txt: Removed.
* webgpu/whlsl/simple-arrays.html: Removed.
* webgpu/whlsl/simple-getter-setter-expected.txt: Removed.
* webgpu/whlsl/simple-getter-setter.html: Removed.
* webgpu/whlsl/simple-tests-expected.txt: Removed.
* webgpu/whlsl/simple-tests.html: Removed.
* webgpu/whlsl/simple-while-loop-expected.txt: Removed.
* webgpu/whlsl/simple-while-loop.html: Removed.
* webgpu/whlsl/smaller-than-32-bit-types-expected.txt: Removed.
* webgpu/whlsl/smaller-than-32-bit-types.html: Removed.
* webgpu/whlsl/sparse-bind-group-2-expected.txt: Removed.
* webgpu/whlsl/sparse-bind-group-2.html: Removed.
* webgpu/whlsl/sparse-bind-group-3-expected.txt: Removed.
* webgpu/whlsl/sparse-bind-group-3.html: Removed.
* webgpu/whlsl/sparse-bind-group-expected.txt: Removed.
* webgpu/whlsl/sparse-bind-group.html: Removed.
* webgpu/whlsl/store-null-expected.txt: Removed.
* webgpu/whlsl/store-null.html: Removed.
* webgpu/whlsl/store-to-property-updates-properly-expected.html: Removed.
* webgpu/whlsl/store-to-property-updates-properly.html: Removed.
* webgpu/whlsl/struct-expected.txt: Removed.
* webgpu/whlsl/struct.html: Removed.
* webgpu/whlsl/structure-field-enumeration-element-clash-expected.txt: Removed.
* webgpu/whlsl/structure-field-enumeration-element-clash.html: Removed.
* webgpu/whlsl/switch-expected.txt: Removed.
* webgpu/whlsl/switch.html: Removed.
* webgpu/whlsl/ternary-spec-test-expected.txt: Removed.
* webgpu/whlsl/ternary-spec-test.html: Removed.
* webgpu/whlsl/test-harness-test-expected.txt: Removed.
* webgpu/whlsl/test-harness-test.html: Removed.
* webgpu/whlsl/textures-getdimensions-expected.txt: Removed.
* webgpu/whlsl/textures-getdimensions.html: Removed.
* webgpu/whlsl/textures-load-expected.html: Removed.
* webgpu/whlsl/textures-load.html: Removed.
* webgpu/whlsl/textures-sample-bias-expected.html: Removed.
* webgpu/whlsl/textures-sample-bias.html: Removed.
* webgpu/whlsl/textures-sample-expected.html: Removed.
* webgpu/whlsl/textures-sample-grad-expected.html: Removed.
* webgpu/whlsl/textures-sample-grad.html: Removed.
* webgpu/whlsl/textures-sample-level-expected.html: Removed.
* webgpu/whlsl/textures-sample-level.html: Removed.
* webgpu/whlsl/textures-sample.html: Removed.
* webgpu/whlsl/two-dimensional-array-expected.txt: Removed.
* webgpu/whlsl/two-dimensional-array.html: Removed.
* webgpu/whlsl/type-mismatch-expected.txt: Removed.
* webgpu/whlsl/type-mismatch.html: Removed.
* webgpu/whlsl/uint-bitwise-expected.txt: Removed.
* webgpu/whlsl/uint-bitwise.html: Removed.
* webgpu/whlsl/use-undefined-variable-2-expected.txt: Removed.
* webgpu/whlsl/use-undefined-variable-2.html: Removed.
* webgpu/whlsl/use-undefined-variable-expected.txt: Removed.
* webgpu/whlsl/use-undefined-variable.html: Removed.
* webgpu/whlsl/variable-shadowing-expected.txt: Removed.
* webgpu/whlsl/variable-shadowing.html: Removed.
* webgpu/whlsl/vector-compare-expected.txt: Removed.
* webgpu/whlsl/vector-compare.html: Removed.
* webgpu/whlsl/vector-constructors-expected.txt: Removed.
* webgpu/whlsl/vector-constructors.html: Removed.
* webgpu/whlsl/vector-matrix-addition-subtraction-expected.txt: Removed.
* webgpu/whlsl/vector-matrix-addition-subtraction.html: Removed.
* webgpu/whlsl/vector-syntax-expected.txt: Removed.
* webgpu/whlsl/vector-syntax.html: Removed.
* webgpu/whlsl/void-variable-parameter-expected.txt: Removed.
* webgpu/whlsl/void-variable-parameter.html: Removed.
* webgpu/whlsl/while-loop-break-expected.html: Removed.
* webgpu/whlsl/while-loop-break.html: Removed.
* webgpu/whlsl/while-loop-continue-expected.html: Removed.
* webgpu/whlsl/while-loop-continue.html: Removed.
* webgpu/whlsl/whlsl-expected.html: Removed.
* webgpu/whlsl/whlsl.html: Removed.
* webgpu/whlsl/wrong-argument-length-expected.txt: Removed.
* webgpu/whlsl/wrong-argument-length.html: Removed.
* webgpu/whlsl/wrong-types-expected.txt: Removed.
* webgpu/whlsl/wrong-types.html: Removed.
* webgpu/whlsl/zero-initialize-values-2-expected.html: Removed.
* webgpu/whlsl/zero-initialize-values-2.html: Removed.
* webgpu/whlsl/zero-initialize-values-expected.html: Removed.
* webgpu/whlsl/zero-initialize-values.html: Removed.

Canonical link: https://commits.webkit.org/240102@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@280467 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2021-07-30 03:53:49 +00:00
..
resources Fix inspector viewing of canvas save/restore stack, and tighten and simplify CanvasRenderingContext2DBase 2021-03-08 21:47:39 +00:00
console-record-2d-expected.txt
console-record-2d.html
console-record-bitmaprenderer-expected.txt Web Inspector: Canvas: split recording tests into separate files so they don't timeout 2019-06-01 21:37:49 +00:00
console-record-bitmaprenderer.html
console-record-webgl-expected.txt Web Inspector: Canvas: split recording tests into separate files so they don't timeout 2019-06-01 21:37:49 +00:00
console-record-webgl.html
console-record-webgl2-expected.txt
console-record-webgl2.html
context-attributes-expected.txt
context-attributes.html Web Inspector: add instrumentation for showing existing Web Animations 2020-01-29 23:46:15 +00:00
create-context-2d-expected.txt
create-context-2d.html
create-context-bitmaprenderer-expected.txt Web Inspector: Canvas: add support for showing WebGPU contexts 2019-04-02 22:19:05 +00:00
create-context-bitmaprenderer.html
create-context-webgl-expected.txt
create-context-webgl.html
create-context-webgl2-expected.txt
create-context-webgl2.html Web Inspector: Canvas: add support for showing WebGPU contexts 2019-04-02 22:19:05 +00:00
extensions-expected.txt
extensions.html
memory-expected.txt
memory.html [GPU Process] inspector/canvas/memory.html fails when GPU rendering is enabled for 2D Canvas 2021-03-12 23:52:47 +00:00
recording-2d-frameCount-expected.txt Fix inspector viewing of canvas save/restore stack, and tighten and simplify CanvasRenderingContext2DBase 2021-03-08 21:47:39 +00:00
recording-2d-frameCount.html
recording-2d-full-expected.txt Fix inspector viewing of canvas save/restore stack, and tighten and simplify CanvasRenderingContext2DBase 2021-03-08 21:47:39 +00:00
recording-2d-full.html
recording-2d-memoryLimit-expected.txt Fix inspector viewing of canvas save/restore stack, and tighten and simplify CanvasRenderingContext2DBase 2021-03-08 21:47:39 +00:00
recording-2d-memoryLimit.html
recording-2d-saves-expected.txt Fix inspector viewing of canvas save/restore stack, and tighten and simplify CanvasRenderingContext2DBase 2021-03-08 21:47:39 +00:00
recording-2d-saves.html Fix inspector viewing of canvas save/restore stack, and tighten and simplify CanvasRenderingContext2DBase 2021-03-08 21:47:39 +00:00
recording-bitmaprenderer-frameCount-expected.txt
recording-bitmaprenderer-frameCount.html Web Inspector: Canvas: split recording tests into separate files so they don't timeout 2019-06-01 21:37:49 +00:00
recording-bitmaprenderer-full-expected.txt [JSC] Make Promise implementation faster 2019-09-05 01:23:46 +00:00
recording-bitmaprenderer-full.html
recording-bitmaprenderer-memoryLimit-expected.txt
recording-bitmaprenderer-memoryLimit.html
recording-expected.txt
recording-html-2d-expected.txt Implement CanvasRenderingContext2D.createConicGradient 2021-05-15 20:46:56 +00:00
recording-html-2d.html Implement CanvasRenderingContext2D.createConicGradient 2021-05-15 20:46:56 +00:00
recording-webgl-frameCount-expected.txt Web Inspector: Canvas: split recording tests into separate files so they don't timeout 2019-06-01 21:37:49 +00:00
recording-webgl-frameCount.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl-full-expected.txt [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl-full.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl-memoryLimit-expected.txt Web Inspector: Canvas: split recording tests into separate files so they don't timeout 2019-06-01 21:37:49 +00:00
recording-webgl-memoryLimit.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl-snapshots-expected.txt Web Inspector: Canvas: change tests to not print out dataURLs 2019-02-28 22:01:24 +00:00
recording-webgl-snapshots.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl2-frameCount-expected.txt [WebGL2] releaseShaderCompiler is not allowed to be supported in WebGL 2020-08-14 22:33:47 +00:00
recording-webgl2-frameCount.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl2-full-expected.txt Web Inspector: `RecordCanvasActionVariant` causes a huge symbol to be created in WebCore 2021-03-04 01:34:21 +00:00
recording-webgl2-full.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl2-memoryLimit-expected.txt [WebGL2] releaseShaderCompiler is not allowed to be supported in WebGL 2020-08-14 22:33:47 +00:00
recording-webgl2-memoryLimit.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording-webgl2-snapshots-expected.txt [WebGL2] releaseShaderCompiler is not allowed to be supported in WebGL 2020-08-14 22:33:47 +00:00
recording-webgl2-snapshots.html [WebGL2] Various parameters should be non-nullable in IDL 2020-08-18 23:49:22 +00:00
recording.html
requestClientNodes-css-expected.txt
requestClientNodes-css.html
requestClientNodes-expected.txt
requestClientNodes.html
requestContent-2d-expected.txt
requestContent-2d.html
requestContent-bitmaprenderer-expected.txt Web Inspector: Canvas: change tests to not print out dataURLs 2019-02-28 22:01:24 +00:00
requestContent-bitmaprenderer.html
requestContent-webgl-expected.txt
requestContent-webgl.html
requestContent-webgl2-expected.txt
requestContent-webgl2.html
requestNode-expected.txt
requestNode.html
requestShaderSource-expected.txt Web Inspector: modernize generated backend protocol code 2020-09-10 19:23:17 +00:00
requestShaderSource-webgl-expected.txt
requestShaderSource-webgl.html
requestShaderSource.html
resolveContext-2d-expected.txt
resolveContext-2d.html
resolveContext-bitmaprenderer-expected.txt Web Inspector: Canvas: instrument WebGPUDevice instead of GPUCanvasContext 2019-09-11 23:28:37 +00:00
resolveContext-bitmaprenderer.html
resolveContext-webgl-expected.txt
resolveContext-webgl.html
resolveContext-webgl2-expected.txt
resolveContext-webgl2.html
setRecordingAutoCaptureFrameCount-expected.txt
setRecordingAutoCaptureFrameCount.html
setShaderProgramDisabled-expected.txt
setShaderProgramDisabled.html
setShaderProgramHighlighted-expected.txt Web Inspector: unify agent command error messages 2019-08-27 01:02:20 +00:00
setShaderProgramHighlighted.html
shaderProgram-add-remove-webgl-expected.txt
shaderProgram-add-remove-webgl.html
shaderProgram-add-remove-webgl2-expected.txt
shaderProgram-add-remove-webgl2.html
updateShader-expected.txt Web Inspector: modernize generated backend protocol code 2020-09-10 19:23:17 +00:00
updateShader-webgl-expected.txt
updateShader-webgl.html
updateShader.html