[Webkit-unassigned] [Bug 181305] New: SVG text with filter not painted property when there is a selection and visibility is toggled

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 4 13:24:12 PST 2018


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

            Bug ID: 181305
           Summary: SVG text with filter not painted property when there
                    is a selection and visibility is toggled
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: SVG
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: joepeck at webkit.org
                CC: simon.fraser at apple.com, zimmermann at kde.org

SVG text with filter not painted property when there is a selection and visibility is toggled

Steps to Reproduce:
1. Inspect <https://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/e43727eb-d265-4aec-9bbe-b803b3c0a367/splash-svg.html>
2. Run the following snippet in the console to toggle the visibility of the text every second (it will blink on and off every second)

setInterval(() => {
    let elem = document.querySelector(".filtered");
    if (elem.style.visibility === "hidden")
        elem.style.visibility = "";
    else
        elem.style.visibility = "hidden";
}, 1000);

3. Select part of the text, like the "a" in "splash"
  => When the text tries to re-appear nothing is painted but the selection box

Compare to behavior without a selection.

-- 
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/20180104/f058adee/attachment-0001.html>


More information about the webkit-unassigned mailing list