WebPlatformTest / HTML5test

How well does your browser support HTML5?
https://html5test.com
MIT License
995 stars 193 forks source link

Fix SVG detection #512

Closed Oblomov closed 6 years ago

Oblomov commented 7 years ago

clientWidth and clientHeight are not guaranteed to report the correct value for boxes with inline styling (as documented for the step 1 in https://www.w3.org/TR/cssom-view-1/#dom-element-clientwidth).

Use getBoundingClientRect() instead, which does not have this restriction.