While working on draft text for gap decorations, I noticed a minor inconsistency in the existing text for column rules in css-multicol-1.
Section 4.4 states that the computed value for column-rule-width is:
absolute length, snapped as a border width; 0 if the column rule style is none or hidden
However, Section 4.3, defining column-rule-style, states:
The none value forces the computed value of column-rule-width to be 0.
...and makes no mention of hidden.
Blink, Webkit, and Gecko all agree that column-rule-style: hidden results in the computed value of column-rule-width being set to 0. Test page: https://codepen.io/kevinbcmu/pen/qBeVyme
Should we update the text for column-rule-width to reflect this?