Skip to content

Commit 1228083

Browse files
committed
[css-overflow] Fix incorrect quoting of 'overflow', 'overflow-x', and 'overflow-y'.
1 parent b8ebdf5 commit 1228083

File tree

2 files changed

+30
-29
lines changed

2 files changed

+30
-29
lines changed

css-overflow/Overview.html

+21-20
Original file line numberDiff line numberDiff line change
@@ -542,12 +542,13 @@ <h3 id=border-box-overflow><span class=secno>2.3. </span>Border box
542542

543543
<h2 id=overflow-properties><span class=secno>3. </span>Overflow properties</h2>
544544

545-
<p> The ‘<a href="#overflow-x"><code class=css>overflow-x</code></a>
546-
property specifies the handling of overflow in the horizontal direction
547-
(i.e., overflow from the left and right sides of the box), and the ‘<a
548-
href="#overflow-y"><code class=css>overflow-y</code></a>’ property
549-
specifies the handling of overflow in the vertical direction (i.e.,
550-
overflow from the top and bottom sides of the box)
545+
<p> The ‘<a href="#overflow-x"><code
546+
class=property>overflow-x</code></a>’ property specifies the handling of
547+
overflow in the horizontal direction (i.e., overflow from the left and
548+
right sides of the box), and the ‘<a href="#overflow-y"><code
549+
class=property>overflow-y</code></a>’ property specifies the handling of
550+
overflow in the vertical direction (i.e., overflow from the top and bottom
551+
sides of the box)
551552

552553
<table class=propdef>
553554
<tbody>
@@ -731,18 +732,18 @@ <h2 id=overflow-properties><span class=secno>3. </span>Overflow properties</h2>
731732
<li> for horizontal writing mode <a
732733
href="#ref-CSS-WRITING-MODES-3">[CSS-WRITING-MODES-3]<!--{{!CSS-WRITING-MODES-3}}--></a>,
733734
the computed value for ‘<a href="#overflow-y"><code
734-
class=css>overflow-y</code></a>’ is the cascaded value and the
735-
computed value for ‘<a href="#overflow-x"><code
736-
class=css>overflow-x</code></a>’ is ‘<a href="#hidden"><code
737-
class=css>hidden</code></a>’, or
735+
class=property>overflow-y</code></a>’ is the cascaded value and
736+
the computed value for ‘<a href="#overflow-x"><code
737+
class=property>overflow-x</code></a>’ is ‘<a
738+
href="#hidden"><code class=css>hidden</code></a>’, or
738739

739740
<li> for vertical writing mode <a
740741
href="#ref-CSS-WRITING-MODES-3">[CSS-WRITING-MODES-3]<!--{{!CSS-WRITING-MODES-3}}--></a>,
741742
the computed value for ‘<a href="#overflow-x"><code
742-
class=css>overflow-x</code></a>’ is the cascaded value and the
743-
computed value for ‘<a href="#overflow-y"><code
744-
class=css>overflow-y</code></a>’ is ‘<a href="#hidden"><code
745-
class=css>hidden</code></a>’.
743+
class=property>overflow-x</code></a>’ is the cascaded value and
744+
the computed value for ‘<a href="#overflow-y"><code
745+
class=property>overflow-y</code></a>’ is ‘<a
746+
href="#hidden"><code class=css>hidden</code></a>’.
746747
</ol>
747748
</ol>
748749

@@ -1049,16 +1050,16 @@ <h4 id=style-of-fragments><span class=secno>6.1.2. </span>Styling of
10491050
href="#overflow0"><code class=property>overflow</code></a>’ other than
10501051
<a href="#fragments"><code class=css>fragments</code></a>’ then that
10511052
fragment box is the last fragment. However, overriding ‘<a
1052-
href="#overflow0"><code class=css>overflow</code></a>’ on the first
1053+
href="#overflow0"><code class=property>overflow</code></a>’ on the first
10531054
fragment does not cause the <a href="#fragment-box"><i>fragment
10541055
box</i></a> not to exist; whether there are fragment boxes at all is
10551056
determined by the computed value of overflow for the element. <span
10561057
class=issue>Need to reword this to refer to the appropriate choice of
1057-
<a href="#overflow-x"><code class=css>overflow-x</code></a>’ or<a
1058-
href="#overflow-y"><code class=css>overflow-y</code></a>’, and then
1059-
point to rule about the handling of the other one of ‘<a
1060-
href="#overflow-x"><code class=css>overflow-x</code></a>’ or ‘<a
1061-
href="#overflow-y"><code class=css>overflow-y</code></a>’.</span>
1058+
<a href="#overflow-x"><code class=property>overflow-x</code></a>’ or
1059+
<a href="#overflow-y"><code class=property>overflow-y</code></a>’,
1060+
and then point to rule about the handling of the other one of ‘<a
1061+
href="#overflow-x"><code class=property>overflow-x</code></a>’ or ‘<a
1062+
href="#overflow-y"><code class=property>overflow-y</code></a>’.</span>
10621063

10631064
<p> Styling an ‘<code class=css>::nth-fragment()</code>’ pseudo-element
10641065
with the ‘<code class=property>content</code>’ property has no effect;

css-overflow/Overview.src.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -423,10 +423,10 @@ <h3 id="border-box-overflow">Border box overflow</h3>
423423
<h2 id="overflow-properties">Overflow properties</h2>
424424

425425
<p>
426-
The ''overflow-x'' property specifies
426+
The 'overflow-x' property specifies
427427
the handling of overflow in the horizontal direction
428428
(i.e., overflow from the left and right sides of the box),
429-
and the ''overflow-y'' property specifies the handling
429+
and the 'overflow-y' property specifies the handling
430430
of overflow in the vertical direction
431431
(i.e., overflow from the top and bottom sides of the box)
432432
</p>
@@ -554,13 +554,13 @@ <h2 id="overflow-properties">Overflow properties</h2>
554554
<ol>
555555
<li>
556556
for horizontal writing mode [[!CSS3-WRITING-MODES]],
557-
the computed value for ''overflow-y'' is the cascaded value
558-
and the computed value for ''overflow-x'' is ''hidden'', or
557+
the computed value for 'overflow-y' is the cascaded value
558+
and the computed value for 'overflow-x' is ''hidden'', or
559559
</li>
560560
<li>
561561
for vertical writing mode [[!CSS3-WRITING-MODES]],
562-
the computed value for ''overflow-x'' is the cascaded value
563-
and the computed value for ''overflow-y'' is ''hidden''.
562+
the computed value for 'overflow-x' is the cascaded value
563+
and the computed value for 'overflow-y' is ''hidden''.
564564
</li>
565565
</ol>
566566
</li>
@@ -857,14 +857,14 @@ <h4 id="style-of-fragments">Styling of fragments</h4>
857857
if a <i>fragment box</i> has a
858858
computed value of 'overflow' other than ''fragments''
859859
then that fragment box is the last fragment.
860-
However, overriding ''overflow'' on the first fragment
860+
However, overriding 'overflow' on the first fragment
861861
does not cause the <i>fragment box</i> not to exist;
862862
whether there are fragment boxes at all is determined by
863863
the computed value of overflow for the element.
864864
<span class="issue">Need to reword this to refer to the
865-
appropriate choice of ''overflow-x'' or ''overflow-y'',
865+
appropriate choice of 'overflow-x' or 'overflow-y',
866866
and then point to rule about the handling of the other one
867-
of ''overflow-x'' or ''overflow-y''.</span>
867+
of 'overflow-x' or 'overflow-y'.</span>
868868
</p>
869869

870870
<p>

0 commit comments

Comments
 (0)