<?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>263273</bug_id>
          
          <creation_ts>2023-10-17 12:59:08 -0700</creation_ts>
          <short_desc>3D children disappear when they get backdrop-filter</short_desc>
          <delta_ts>2024-11-14 13:55:09 -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>WebKitGTK</component>
          <version>Other</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>DUPLICATE</resolution>
          <dup_id>282682</dup_id>
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Ana Tudor">ana.tudor.lhnh</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>bugs-noreply</cc>
    
    <cc>fujii</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1985654</commentid>
    <comment_count>0</comment_count>
    <who name="Ana Tudor">ana.tudor.lhnh</who>
    <bug_when>2023-10-17 12:59:08 -0700</bug_when>
    <thetext>1. Place a 3D `.system` in the middle of the viewport, the `body` being used as a scene.

```
html, body, div { display: grid }
html { height: 100% }
body { perspective: 35em }

.system {
	place-self: center;
	transform-style: preserve-3d
}
```

2. Use its two pseudos to create two square shapes inside it. These get stacked one on top of the other and we give them a `border` and `background`.

```
.system {
	/* same as before */
	
	&amp;::before, &amp;::after {
		grid-area: 1/ 1;
		border: solid 4px black;
		padding: .5*$d;
		background: hsla(0, 0%, 70%, .3);
		content: &apos;&apos;
	}
}
```

3. Make them rotate around a central point between them.

```
.system {
	/* same as before */
	
	&amp;::before, &amp;::after {
		/* same as before */
		animation: a 2*$t linear infinite
	}
	
	&amp;::after { animation-delay: -1*$t }
}

@keyframes a {
	0% { transform: rotatey(0deg) translatez($d) }
	100% { transform: rotatey(1turn) translatez($d) }
}
```

4. Set `backdrop-filter: blur(4px)` on the two squares. This makes the squares disappear when testing on Linux with Epiphany.

Live test https://codepen.io/thebabydino/pen/KKbEWMW

This doesn&apos;t seem to be happening in actual Safari https://twitter.com/anatudor/status/1714355567102173587</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2075163</commentid>
    <comment_count>1</comment_count>
    <who name="Fujii Hironori">fujii</who>
    <bug_when>2024-11-14 13:55:09 -0800</bug_when>
    <thetext>Fixed by 286605@main.

*** This bug has been marked as a duplicate of bug 282682 ***</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>