[01] min:
, max:
[02] min:
, max:
[03] min:
, max:
{"ScriptPreparationCode":"var count = 100;\r\nvar targetElement = document.getElementById(\u0022target\u0022);\r\nvar amin = 9999;\r\nvar amax = 0;\r\nvar bmin = 9999;\r\nvar bmax = 0;\r\nvar cmin = 9999;\r\nvar cmax = 0;","TestCases":[{"Name":"getBoundingClientRect()","Code":"var result;\r\nfor(let i = 0;i \u003C count; i\u002B\u002B) {\r\n result = targetElement.getBoundingClientRect().height;\r\n if (result \u003C amin) amin = result;\r\n if (amax \u003C result) amax = result;\r\n}\r\ndocument.getElementById(\u0022amin\u0022).textContent = amin;\r\ndocument.getElementById(\u0022amax\u0022).textContent = amax;","IsDeferred":false},{"Name":"CSS Height Property","Code":"var result;\r\nvar targetStyle = window.getComputedStyle(targetElement);\r\nfor(let i = 0;i \u003C count; i\u002B\u002B) {\r\n result = parseFloat(targetStyle.getPropertyValue(\u0022height\u0022));\r\n if (result \u003C bmin) bmin = result;\r\n if (bmax \u003C result) bmax = result;\r\n}\r\ndocument.getElementById(\u0022bmin\u0022).textContent = bmin;\r\ndocument.getElementById(\u0022bmax\u0022).textContent = bmax;","IsDeferred":false},{"Name":"Other CSS Property","Code":"var result;\r\nvar targetStyle = window.getComputedStyle(targetElement);\r\nfor(let i = 0;i \u003C count; i\u002B\u002B) {\r\n result = parseFloat(targetStyle.getPropertyValue(\u0022rx\u0022));\r\n if (result \u003C cmin) cmin = result;\r\n if (cmax \u003C result) cmax = result;\r\n}\r\ndocument.getElementById(\u0022cmin\u0022).textContent = cmin;\r\ndocument.getElementById(\u0022cmax\u0022).textContent = cmax;","IsDeferred":false}]}