[Webkit-unassigned] [Bug 258118] New: safari: font-size transition is not smooth

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jun 15 03:26:09 PDT 2023


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

            Bug ID: 258118
           Summary: safari: font-size transition is not smooth
           Product: WebKit
           Version: Safari 16
          Hardware: Mac (Intel)
                OS: macOS 13
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Animations
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: amithbr6 at gmail.com
                CC: dino at apple.com, graouts at apple.com

Created attachment 466697

  --> https://bugs.webkit.org/attachment.cgi?id=466697&action=review

an screen recording from w3school example in safari

I have below code in html. The transition for font-size is not smooth as shown in attached screen recording.

<style>
.test-font-transition {
    font-size: 12px;
    -webkit-transition: font-size 2s;
       -moz-transition: font-size 2s;
         -o-transition: font-size 2s;
            transition: font-size 2s;
            will-change: font-size;
}

.test-font-transition:hover {
    font-size: 20px;  
}
</style>

<p class="test-font-transition">This is a paragraph.</p>

-- 
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/20230615/34293e8b/attachment.htm>


More information about the webkit-unassigned mailing list