chromium/third_party/blink/web_tests/http/tests/csspaint/supports-insecure-context.html

<!DOCTYPE html>
<script src="../resources/get-host-info.js"></script>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
  if (window.location.origin != get_host_info().UNAUTHENTICATED_ORIGIN) {
    window.location = get_host_info().UNAUTHENTICATED_ORIGIN + window.location.pathname;
  } else {
    test(function() {
      assert_false(CSS.supports('background', 'paint(foo)'));
      assert_false(CSS.supports('content', 'paint(foo)'));
      assert_false(CSS.supports('border-source-image: paint(foo);'));
    });
  }
</script>