[Webkit-unassigned] [Bug 248308] New: CSSOM serialization for marker ignores marker-mid and marker-end

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Nov 24 08:05:01 PST 2022


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

            Bug ID: 248308
           Summary: CSSOM serialization for marker ignores marker-mid and
                    marker-end
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: CSS
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: obrufau at igalia.com

Run this code:

  var {style} = document.createElement("div");
  style.markerStart = "url(start)";
  style.markerMid = "url(mid)";
  style.markerEnd = "url(end)";
  style.marker; // "url(\"start\")"
  style.marker += "";
  [style.markerStart, style.markerMid, style.markerEnd]; // ["url(\"start\")", "url(\"start\")", "url(\"start\")"]

style.marker should be serialized as empty string when the longhands have different values.

-- 
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/20221124/c5f139e1/attachment.htm>


More information about the webkit-unassigned mailing list