<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>228312</bug_id>
          
          <creation_ts>2021-07-26 20:40:59 -0700</creation_ts>
          <short_desc>CSS blur() filter performance leads to breaking pages</short_desc>
          <delta_ts>2026-01-26 14:44:03 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>CSS</component>
          <version>Safari Technology Preview</version>
          <rep_platform>Mac (Intel)</rep_platform>
          <op_sys>macOS 11</op_sys>
          <bug_status>NEW</bug_status>
          <resolution></resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Dan Wood">daniel4wood</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>kristian.djakovic2</cc>
    
    <cc>simon.fraser</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1779672</commentid>
    <comment_count>0</comment_count>
    <who name="Dan Wood">daniel4wood</who>
    <bug_when>2021-07-26 20:40:59 -0700</bug_when>
    <thetext>Just had to track down a bug causing pages to break in our new docs. Page was working in Chrome, but breaking on iOS and there was a performance impact on Safari.

The css was the following (for a footer with a corner gradient)

```css
.footer {
  background-color: $color-black;
  position: relative;
  overflow: hidden;
  z-index: 0;

  &amp;:after {
    content: &apos;&apos;;
    position: absolute;
    right: -900px;
    bottom: -1100px;
    width: 1290px;
    height: 1100px;
    background: $gradient-conic-blue-to-red;
    filter: blur(300px);
    transform: matrix(-0.09, 1, -1, -0.09, 0, 0);
    z-index: -1;
  }
}
```

The issue stemmed from our designer creating the gradient using a transformed coloured square with `blur(300px)` applied.

I was able to fix this by creating the gradient in a normal way with `background-image`, but I don&apos;t think that having a blur of 300px should cause such a performance issue that the page breaks entirely, especially since it works smoothly in chrome.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1780385</commentid>
    <comment_count>1</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2021-07-29 08:49:21 -0700</bug_when>
    <thetext>&lt;rdar://problem/81273896&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2174722</commentid>
    <comment_count>2</comment_count>
    <who name="">kristian.djakovic2</who>
    <bug_when>2026-01-24 02:37:32 -0800</bug_when>
    <thetext>Hi there! Seems like the issue was resolved but it was reintroduced on iOS26.2

If you checkout this page, https://ios-blur.static.domains/, on iOS26.2 device (I used my iPhone 16 Pro) you will see slow load, then blank screen for ~15s and then the text and background color will show.

This is not the case on older versions of iOS (we tried iOS 17 and iOS 26.1).</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2174996</commentid>
    <comment_count>3</comment_count>
    <who name="Simon Fraser (smfr)">simon.fraser</who>
    <bug_when>2026-01-25 19:57:04 -0800</bug_when>
    <thetext>Indeed, we have to revert a change because it caused bugs, but will bring back the better performance in a future release.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2175264</commentid>
    <comment_count>4</comment_count>
    <who name="">kristian.djakovic2</who>
    <bug_when>2026-01-26 14:44:03 -0800</bug_when>
    <thetext>(In reply to Simon Fraser (smfr) from comment #3)
&gt; Indeed, we have to revert a change because it caused bugs, but will bring
&gt; back the better performance in a future release.

Awesome!

In case anyone has the same issue, filters on SVG have no issues and can be used as a replacement.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>