chromium/third_party/blink/web_tests/fast/forms/color/color-suggestion-picker-appearance-set-type.html

<!DOCTYPE html>
<meta name=fuzzy content="maxDifference=0-3; totalPixels=0-1000">
<script src="../../../resources/testdriver.js"></script>
<script src="../../../resources/testdriver-vendor.js"></script>
<script src="../resources/picker-common.js"></script>

<input type='color' value='#ff0000' list>

<script>
  window.onload = openPickerAppearanceOnly(document.querySelector('input'),() => {
    // The color suggestion picker popup should close when the input type changes.
    document.querySelector('input').type = 'text';
  });
</script>