chromium/third_party/blink/web_tests/http/tests/inspector-protocol/resources/shared-storage-write-frame.php

<?php
  $writeValue = $_GET['write'] ?? '';

  // We need live headers, so make sure it's not cached.
  header('Cache-Control: no-cache, no-store, must-revalidate, max-age=0');
  header('Shared-Storage-Write: ' . $writeValue);
?>
<html>
<body>
Test writing to shared storage
</body>
</html>