[Webkit-unassigned] [Bug 104379] animated gif in CSS background url in an iframe is not properly animating

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 12 18:03:38 PDT 2023


https://bugs.webkit.org/show_bug.cgi?id=104379

--- Comment #10 from Karl Dubost <karlcow at apple.com> ---
When we replace the no-repeat, we see all of them rotating. :) 

WORKING:

body {
    background-image: url('http://www.sqa.org.uk/sqa/assets/images/busy-spinner.gif');
    background-color: white;
    background-position: center;
}

adding
body {background-repeat: repeat} (default)
body {background-repeat: repeat-y}



NOT WORKING: (adding)

body {background-repeat: no-repeat;}
body {background-repeat: repeat-x;}


oh but this is working:
body {
  background-repeat: repeat-x;
  background-position: top;
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20230413/3d4e57f2/attachment.htm>


More information about the webkit-unassigned mailing list