chromium/third_party/blink/web_tests/fast/text-autosizing/form-controls-autosizing-fieldset-element-expected.html

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

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

</head>
<body>

<div style="font-size: 2.5rem">
    This paragraph should be autosized to 40px computed font-size (16 * 800/320),
    whereas the input text fields should be rendered at their default font size and
    the accompanying text below should remain 16px.
</div>

<div>
    <fieldset>
        <legend>Not autosized title</legend>
        <input type="email" name="email" id="email" value="[email protected]"> <label for="email">Not autosized email</label>
        <br>
        <input type="radio" name="radio" id="radio"> <label for="radio">Not autosized radio</label>
    </fieldset>
</div>
<div>
    <fieldset>
        <input type="text" name="text" id="text" value="not autosized text">
    </fieldset>
</div>
<div>
    <fieldset>
        <legend>Not autosized title</legend>
        This text should not be autosized.
    </fieldset>
</div>
<div>
    <fieldset>
        <textarea>This text should not be autosized.</textarea>
    </fieldset>
</div>
<div style="font-size: 2.5rem">
    This text should be autosized.
</div>

</body>
</html>