data icon indicating copy to clipboard operation
data copied to clipboard

Proposal: Support mirroring features

Open skyclouds2001 opened this issue 1 year ago • 0 comments

What information was incorrect, unhelpful, or incomplete?

It'll be helpful to support features which has vendor-prefixed features and helps maintaining those css features.

What did you expect to see?

support mirror data

Do you have any supporting links, references, or citations?

see https://github.com/mdn/data/pull/864#pullrequestreview-2525547946

Do you have anything more you want to share?

possible ways can be:

speicified directly as a string

{
  "-webkit-user-select": "user-select"
}

speicified via mirror key on mirroring data

{
  "-webkit-user-select": {
    "mirror": "user-select"
  }
}

speicified via mirrors key on mirrored data

{
  "user-select": {
    "mirrors": ["-webkit-user-select"]
  }
}

skyclouds2001 avatar Jan 07 '25 14:01 skyclouds2001