[Webkit-unassigned] [Bug 273368] New: Unstoppable animation in popovers

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Apr 28 01:35:04 PDT 2024


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

            Bug ID: 273368
           Summary: Unstoppable animation in popovers
           Product: WebKit
           Version: Safari 17
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: stevestasteislost at icloud.com
                CC: bfulgham at webkit.org, simon.fraser at apple.com,
                    zalan at apple.com

Made a single-pager with popover-elements. These elements got some animation to make them visible and interesting for the users. (I made it 
But: this animations are in the opened popover too. Even when applying animation: none for the popover-content.

The CSS I used for that:
        button[type=button] {
                border: none;
                background: none;
                padding: 0;
                font: inherit;
                cursor: help;
                animation: PopOver .5s infinite;
        }
        @keyframes PopOver {
                50% { text-shadow: 1px 1px 2px rgb(60 200 60 / 0.85); }
                100% { text-shadow: 1px 1px 2px rgb(16 8 8 / 0.5); }
        }
        [popover] {
                background-color: ivory;
                animation: none paused; /* does not apply! */
                color: red; /* does apply! */
        }

-- 
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/20240428/19dd0200/attachment-0001.htm>


More information about the webkit-unassigned mailing list