**Issue:** Animated GIF images displayed in a WebView show only the first frame and do not animate. This occurs regardless of how the GIF is loaded: <img> tag with file:/// URL via WebEngine.loadContent() <img> tag with file:/// URL via WebEngine.load() loading an HTML file
Solution : Animation was not working because the decoder never reported Complete, so WebKit never started the animation engine. Make the status complete once the full frame is received. ------------- Commit messages: - 8378226: Animated GIFs do not animate in WebView (regression in JavaFX 24) - Merge remote-tracking branch 'upstream/master' - Merge branch 'openjdk:master' into master - Merge branch 'debug623' - 8376282: [linux, macos] JavaFX fails to build WebKit in DebugNative - add delta for IntersectionRatio as All rect width height calculation is now in Float Changes: https://git.openjdk.org/jfx/pull/2111/files Webrev: https://webrevs.openjdk.org/?repo=jfx&pr=2111&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8378226 Stats: 101 lines in 4 files changed: 99 ins; 0 del; 2 mod Patch: https://git.openjdk.org/jfx/pull/2111.diff Fetch: git fetch https://git.openjdk.org/jfx.git pull/2111/head:pull/2111 PR: https://git.openjdk.org/jfx/pull/2111
