---
title: "When Safari’s ‘Ignore Cache’ Ignored Cache-Control – CSS Wizardry"
url: https://daily.dev/posts/when-safari-s-ignore-cache-ignored-cache-control-css-wizardry-1pnwcan0x
source_url: https://csswizardry.com/2026/08/when-safaris-ignore-cache-ignored-cache-control
type: article
source: "CSS Wizardry"
author: "Harry Roberts"
published: 2026-08-17T15:29:15.115Z
updated: 2026-08-24T09:00:45.295Z
tags: ["safari"]
reading_time: 5
upvotes: 1
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# When Safari’s ‘Ignore Cache’ Ignored Cache-Control – CSS Wizardry

**[CSS Wizardry](https://daily.dev/sources/csswizardry)** · [@csswizardry](https://daily.dev/csswizardry) · 5 min read · 1 upvotes · 0 comments

## Summary

Safari Technology Preview 250 fixes a Web Inspector bug where enabling the 'Ignore Cache' toggle would overwrite a page-authored Cache-Control request header with WebKit's own no-cache value, even when the page had explicitly set a different value like max-age=12345. Before the fix, WebKit conflated bypassing its local resource cache with rewriting the outgoing request's caching semantics. The fix separates the two: the internal ReloadIgnoringCacheData policy still bypasses the local cache, but WebKit now only adds no-cache headers if the request doesn't already contain page-authored Cache-Control or Pragma headers. This narrow bug only affected requests where Web Inspector had disabled caching and the page had already set its own Cache-Control header, potentially causing confusing debugging sessions where server logs showed headers the application never actually sent.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://csswizardry.com/2026/08/when-safaris-ignore-cache-ignored-cache-control>

## Questions this post answers

### Why did Safari Web Inspector's Ignore Cache option change my Cache-Control request header to no-cache?

Before Safari Technology Preview 250, enabling Ignore Cache in Web Inspector caused WebKit to set the outgoing request's Cache-Control and Pragma headers to no-cache even when the page had already set its own Cache-Control value, such as max-age=12345. This overwrote the page-authored header before it reached the network. Safari Technology Preview 250 fixed this so WebKit only adds no-cache headers when the request doesn't already contain page-authored caching headers.

_daily.dev surfaces browser devtools fixes like this so caching bugs don't derail your debugging session._

### Does disabling the resource cache in Safari Web Inspector still bypass caching after the fix in Safari Technology Preview 250?

Yes, the internal ReloadIgnoringCacheData policy that bypasses WebKit's local resource cache is still applied when Ignore Cache is toggled on. What changed is that WebKit no longer overwrites a page-authored Cache-Control or Pragma header to force this behavior; it only sets those headers when the request doesn't already contain them, keeping cache bypass and request header semantics separate.

_track browser devtools quirks like this on daily.dev before they cost you a debugging session._

## Similar posts on daily.dev

- [Better Browser Caching with No-Vary-Search – CSS Wizardry](https://daily.dev/posts/better-browser-caching-with-no-vary-search-css-wizardry-cuzbv315u) · CSS Wizardry · 12 upvotes · 0 comments

---

Tags: [#safari](https://daily.dev/tags/safari)

[View this post on daily.dev](https://daily.dev/posts/when-safari-s-ignore-cache-ignored-cache-control-css-wizardry-1pnwcan0x)
