diff --git a/index.html b/index.html index 30249359e..684dfd1ea 100644 --- a/index.html +++ b/index.html @@ -2618,12 +2618,16 @@
- Any icon indicating that it can be supercomposed with a mask, must - make sure that all important parts are within the safe - zone, which is defined as a circle with center point in the - center of the icon and with a radius of 2/5 (40%) of the icon size, - which means the smaller of the icon width and height, in case the - icon is not rectangular. + The safe zone is the area within a maskable icon + which is guaranteed to always be visible, regardless of user agent + preferences. It is defined as a circle with center point in the center + of the icon and with a radius of 2/5 (40%) of the icon size, which means + the smaller of the icon width and height, in case the icon is not + rectangular. +
++ Designers of maskable icons will want to make sure that all + important parts are within the safe zone.
All pixels in this zone are guaranteed to be seen in all masks. - Pixels outside the safe zone are not guaranteed (but can) be visible - depending on the applies mask. + Pixels outside the safe zone are not guaranteed to (but can) be visible + depending on the applied mask.
The user agent MAY apply a mask of any size, making any pixels that @@ -2652,8 +2656,12 @@
- The user agent MUST paste any image containing transparent pixels - onto a solid color (eg. white) of the user agent's choice. + If the icon contains transparent pixels, the user agent MUST composite + the icon onto a color (eg. white) of the user agent's choice. +
++ It is suggested that designers avoid using transparent pixels in maskable + icons.