Skip to content

Commit c6df12b

Browse files
committed
removed repeat function, revised percetage values for border-clip, added issue for ISO/I18N env() values
1 parent 502e655 commit c6df12b

1 file changed

Lines changed: 6 additions & 18 deletions

File tree

css3-gcpm/Overview.src.html

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,8 @@ <h4>Setting named strings: the 'string-set' property</h4>
296296
<li>env(date-time): returns the date and time on the user's system at the time of formatting
297297
</ul>
298298

299-
<p>Information about date and time is formatted according to the locale of the user.
299+
<p>Information about date and time is formatted according to the locale of the user's system.
300+
<p class=issue>Or, should there be a way to specify the locale? Or should we simply format all in ISO format (e.g., 2010-03-30)?
300301

301302
<p class=note>On many systems, preformatted strings in the user's locale can be found through the <a href="http://www.opengroup.org/onlinepubs/009695399/functions/strftime.html">strftime</a> function. The date, time and date-time strings can be found by using the "%x", "%X" and "%c" conversion strings, respectively.
302303

@@ -1257,7 +1258,7 @@ <h3>The 'border-clip' properties</h3>
12571258
<td><dfn>border-clip</dfn>, <dfn>border-clip-top</dfn>, <dfn>border-clip-right</dfn>, <dfn>border-clip-bottom</dfn>, <dfn>border-clip-left</dfn>
12581259
<tr>
12591260
<td><em>Value:</em>
1260-
<td>normal | [ &lt;length&gt; | &lt;percentage&gt; | &lt;fraction&gt; | repeat() ]+
1261+
<td>normal | [ &lt;length&gt; | &lt;percentage&gt; | &lt;fraction&gt; ]+
12611262
<tr>
12621263
<td><em>Initial:</em>
12631264
<td>normal
@@ -1269,7 +1270,7 @@ <h3>The 'border-clip' properties</h3>
12691270
<td>no
12701271
<tr>
12711272
<td><em>Percentages:</em>
1272-
<td>refer to width of element <span class="issue">height for vertical borders?</span>
1273+
<td>refer to width or height of element</span>
12731274
<tr>
12741275
<td><em>Media:</em>
12751276
<td>visual
@@ -1283,9 +1284,9 @@ <h3>The 'border-clip' properties</h3>
12831284
<p>These properties split their respective borders into parts along
12841285
the border edge. The first part is visible, the second is invisible,
12851286
the third part is visible, etc. Parts can be specified with lengths,
1286-
percentages, fractions (expressed by the 'fr' unit, as per
1287+
percentages, or fractions (expressed by the 'fr' unit, as per
12871288
[[CSS3GRID]] or its <a href="http://dev.w3.org/csswg/css3-grid/">editor's
1288-
edition</a>), and the 'repeat()' function. The 'normal' value means
1289+
edition</a>). The 'normal' value means
12891290
that the border is not split, but shown normally.
12901291

12911292
<p>'border-clip' is a shorthand property for the four individual properties.
@@ -1302,19 +1303,6 @@ <h3>The 'border-clip' properties</h3>
13021303
<p>For horizontal borders, parts are listed from left to right. For
13031304
vertical borders, parts are listed from top to bottom.
13041305

1305-
<p>The ''repeat()'' function specifies a "repeat pattern" that is
1306-
repeated as many times as possible. Only one ''repeat()'' function is
1307-
allowed in a value. The repeat pattern must contain at least one
1308-
length or percentage, otherwise the declaration must be ignored. The
1309-
exact border parts are determined by laying out the specified border
1310-
parts with all fractions initially set to zero. The border parts
1311-
specified before and after the ''repeat()'' function are laid out
1312-
first. Thereafter, the repeat pattern is inserted between them at
1313-
least once, and as many times as possible without making the sum of
1314-
border parts longer than the border length. Any remaining border is
1315-
split proportionally between the fractions specified.
1316-
1317-
<p class=issue>The value of the repeat() function is disputed.
13181306

13191307
<p>The exact border parts are determined by laying out the specified border
13201308
parts with all fractions initially set to zero. Any remaining border is

0 commit comments

Comments
 (0)