{"ScriptPreparationCode":"function test1($) {\r\n var $body = $(\u0027body\u0027),\r\n scrollTop = $(window).scrollTop(),\r\n $innerWidth = $(window).innerWidth();\r\n\r\n $body.addClass(\u0027prevent-scroll-y\u0027);\r\n $innerWidth = $(window).innerWidth() - $innerWidth;\r\n $body.css(\u0027padding-right\u0027, $innerWidth).css({\r\n \u0027top\u0027: -scrollTop\r\n });\r\n $body.attr({\r\n \u0027data-scroll\u0027: scrollTop,\r\n \u0027data-scrollbar\u0027: $innerWidth\r\n });\r\n}\r\n\r\nfunction test2($) {\r\n var $body = $(\u0027body\u0027),\r\n $window = $(window),\r\n scrollTop = $window.scrollTop(),\r\n $innerWidth = $window.innerWidth();\r\n\r\n $body.addClass(\u0027prevent-scroll-y\u0027);\r\n $innerWidth = $window.innerWidth() - $innerWidth;\r\n $body.css(\u0027padding-right\u0027, $innerWidth).css({\r\n \u0027top\u0027: -scrollTop\r\n });\r\n $body.attr({\r\n \u0027data-scroll\u0027: scrollTop,\r\n \u0027data-scrollbar\u0027: $innerWidth\r\n });\r\n}","TestCases":[{"Name":"test1","Code":"test1($);","IsDeferred":false},{"Name":"test2","Code":"test2($);","IsDeferred":false}]}