{"ScriptPreparationCode":" function createCanvasRect(\r\n x,\r\n y,\r\n width,\r\n height\r\n) {\r\n const top = height \u003E= 0 ? y : y \u002B height;\r\n const right = width \u003E= 0 ? x \u002B width : x;\r\n const bottom = height \u003E= 0 ? y \u002B height : y;\r\n const left = width \u003E= 0 ? x : x \u002B width;\r\n\r\n return {\r\n x,\r\n y,\r\n width,\r\n height,\r\n top,\r\n right,\r\n bottom,\r\n left,\r\n };\r\n}","TestCases":[{"Name":"domrect","Code":"new DOMRect(1,2,3,4)","IsDeferred":false},{"Name":"object","Code":"createCanvasRect(1,2,3,4)","IsDeferred":false}]}