{"ScriptPreparationCode":"var canvasOne = document.getElementById(\u0022canvasOne\u0022);\r\nvar ctxOne = canvasOne.getContext(\u00222d\u0022);\r\n\r\nvar canvasTwo = document.getElementById(\u0022canvasTwo\u0022);\r\nvar ctxTwo = canvasTwo.getContext(\u00222d\u0022);\r\n\r\nvar canvasThr = document.getElementById(\u0022canvasThr\u0022);\r\nvar ctxThr = canvasThr.getContext(\u00222d\u0022);","TestCases":[{"Name":"alpha","Code":"ctxOne.beginPath();\r\nctxOne.fillStyle = \u0027rgba(231, 76, 60, 0.1)\u0027;\r\nctxTwo.arc(200, 200, 100, 0, Math.PI * 2, true);\r\nctxOne.fill();","IsDeferred":false},{"Name":"no alpha","Code":"ctxTwo.beginPath();\r\nctxTwo.fillStyle = \u0027rgb(249, 206, 201)\u0027;\r\nctxTwo.arc(200, 200, 100, 0, Math.PI * 2, true);\r\nctxTwo.fill();","IsDeferred":false},{"Name":"hex","Code":"ctxTwo.beginPath();\r\nctxTwo.fillStyle = \u0027#f9cec9\u0027;\r\nctxTwo.arc(200, 200, 100, 0, Math.PI * 2, true);\r\nctxTwo.fill();","IsDeferred":false}]}