{"ScriptPreparationCode":"console.log(\u0022hello\u0022)","TestCases":[{"Name":"Without JS","Code":"console.log(\u0022world\u0022)","IsDeferred":false},{"Name":"MatchMedia with JS","Code":"const matchMedia = window.matchMedia(\u0022(min-width: 400px)\u0022);\r\n\r\nmatchMedia.addListener((query) =\u003E {\r\n if (query.matches) {\r\n console.log(true); \r\n }\r\n})\r\n","IsDeferred":false},{"Name":"Resize","Code":"let currentWidth = window.innerWidth;\r\n\r\nwindow.addEventListener(\u0027resize\u0027, () =\u003E {\r\n currentWidth = window.innerWidth;\r\n});\r\n\r\nif (currentWidth \u003E 400) {\r\n console.log(true); \r\n}","IsDeferred":false}]}