chromium/third_party/blink/web_tests/fast/text-autosizing/list-marker-with-images-and-forms-autosizing.html

<!DOCTYPE html>
<html style="font-size: 16px">
<head>

<meta name="viewport" content="width=800">
<style>
  body {
    width: 800px;
    margin: 0;
    overflow-y: hidden;
    overflow-x: hidden;
  }
</style>

<script src="resources/autosizingTest.js"></script>
</head>
<body>

<div>
The below list item markers should be autosized by a factor of 2.5 (800/320). The whole list is shifted to the right by 8px (14 (autosized marker width) * (1 - 1/2.5) rounded) to compensate the scaling of list item markers and make sure they don't get chopped off.
</div>
<ul>
<li>Simple plain list item</li>
<li></li>
<li><img></img></li>
<li><form><input type="text"></input></form></li>
</ul>

</body>
</html>