chromium/third_party/blink/web_tests/http/tests/worklet/webexposed/global-interface-listing-paint-worklet.html

<!DOCTYPE html>
<html>
<body>
<script>
    if (window.testRunner) {
        testRunner.waitUntilDone();
        testRunner.dumpAsText();
    }

    console.log("This test logs exposed APIs once from each PaintWorkletGlobalScope");
    CSS.paintWorklet.addModule('/js-test-resources/global-interface-listing.js')
      .then(function() {
        if (window.testRunner) {
            testRunner.notifyDone();
        }
    });
</script>
</body>
</html>