@pygmalionjs/pygmalion 0.5.23 → 0.5.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5486,7 +5486,16 @@ const Wl = [
|
|
|
5486
5486
|
"border-right",
|
|
5487
5487
|
"border-bottom",
|
|
5488
5488
|
"border-left",
|
|
5489
|
-
|
|
5489
|
+
// Corner longhands, not the `border-radius` shorthand. A bar that flattens the
|
|
5490
|
+
// two corners it shares with the input below it computes as
|
|
5491
|
+
// `12px 12px 0px 0px`, and reading that back through the shorthand handed the
|
|
5492
|
+
// import a single `12px` — every corner round again, so the seam between the
|
|
5493
|
+
// two boxes reappeared in the frame while the product itself was seamless.
|
|
5494
|
+
// Longhands cannot collapse that way.
|
|
5495
|
+
"border-top-left-radius",
|
|
5496
|
+
"border-top-right-radius",
|
|
5497
|
+
"border-bottom-right-radius",
|
|
5498
|
+
"border-bottom-left-radius",
|
|
5490
5499
|
"box-shadow",
|
|
5491
5500
|
"opacity",
|
|
5492
5501
|
"transform",
|