<!doctype html><title>client* returns the same for non-replaced inlines regardless of list-item-ness</title><linkrel="help"href="https://drafts.csswg.org/cssom-view/#extension-to-the-element-interface"><linkrel="help"href="https://bugzilla.mozilla.org/show_bug.cgi?id=1581467"><linkrel="author"title="Emilio Cobos Álvarez"href="mailto:emilio@crisal.io"><linkrel="author"title="Mozilla"href="https://mozilla.org"><scriptsrc=/resources/testharness.js></script><scriptsrc=/resources/testharnessreport.js></script><style>.li{display:inlinelist-item;}</style><divstyle="position: absolute"><span>Foo</span></div><divstyle="position: absolute"><spanclass="li">Foo</span></div><script>test(()=>{letfirst=document.querySelector("span");letsecond=document.querySelector(".li");assert_equals(first.clientWidth,second.clientWidth,"clientWidth should match");assert_equals(first.clientHeight,second.clientHeight,"clientHeight should match");assert_equals(first.clientTop,second.clientTop,"clientTop should match");assert_equals(first.clientLeft,second.clientLeft,"clientLeft should match");},"client* returns the same for non-replaced inlines regardless of list-item-ness");</script>