Skip to content

Commit 4e35dbe

Browse files
renatahodovanfrivoal
authored andcommitted
Fix typos in < and > html entities (#4644)
1 parent b5bb6d2 commit 4e35dbe

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

css-exclusions-1/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -648,11 +648,11 @@ Processing Model Example</h4>
648648
&lt;body&gt;
649649
&lt;div id="d1"&gt;
650650
Lorem ipsusm ...
651-
&lt;p id="e1"&gt;&lt/p&gt;
651+
&lt;p id="e1"&gt;&lt;/p&gt;
652652
&lt;/div&gt;
653653
&lt;div id="d2"&gt;
654654
Lorem ipsusm ...
655-
&lt;p id="e2" &gt;&lt/p&gt;
655+
&lt;p id="e2" &gt;&lt;/p&gt;
656656
&lt;/div&gt;
657657
&lt;/body&gt;
658658
&lt;/html&gt;</pre>

css-overflow-3/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,8 @@ Sample HTML fragments, renderings, and your browser:
600600
<table class="awesome-table data">
601601
<thead><th>HTML<th>Reference rendering<th>Your Browser</thead>
602602
<tr>
603-
<td><code highlight=html>&ltdiv>שלום 123456&lt;/div></code><td><div style="font-family:monospace">123456 ם…</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis">שלום 123456</div>
604-
<tr><td><code highlight=html>&ltdiv dir=rtl>שלום 123456&lt;/div></code><td><div style="font-family:monospace">…456 שלום</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis" dir=rtl>שלום 123456</div>
603+
<td><code highlight=html>&lt;div>שלום 123456&lt;/div></code><td><div style="font-family:monospace">123456 ם…</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis">שלום 123456</div>
604+
<tr><td><code highlight=html>&lt;div dir=rtl>שלום 123456&lt;/div></code><td><div style="font-family:monospace">…456 שלום</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis" dir=rtl>שלום 123456</div>
605605

606606
</table>
607607

css-overflow-4/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -535,8 +535,8 @@ Sample HTML fragments, renderings, and your browser:
535535
<table class="awesome-table data">
536536
<thead><th>HTML<th>Reference rendering<th>Your Browser</thead>
537537
<tr>
538-
<td><code highlight=html>&ltdiv>שלום 123456&lt;/div></code><td><div style="font-family:monospace">123456 ם…</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis">שלום 123456</div>
539-
<tr><td><code highlight=html>&ltdiv dir=rtl>שלום 123456&lt;/div></code><td><div style="font-family:monospace">…456 שלום</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis" dir=rtl>שלום 123456</div>
538+
<td><code highlight=html>&lt;div>שלום 123456&lt;/div></code><td><div style="font-family:monospace">123456 ם…</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis">שלום 123456</div>
539+
<tr><td><code highlight=html>&lt;div dir=rtl>שלום 123456&lt;/div></code><td><div style="font-family:monospace">…456 שלום</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis" dir=rtl>שלום 123456</div>
540540

541541
</table>
542542

css-page-floats-3/Overview.bs

+13-13
Original file line numberDiff line numberDiff line change
@@ -561,8 +561,8 @@ The 'clear' property</h2>
561561
<pre>
562562
.figure { float-reference: column; float: bottom; clear: none }
563563

564-
&ltdiv class=figure>&lt;/div>
565-
&ltdiv class=figure>&lt;/div>
564+
&lt;div class=figure>&lt;/div>
565+
&lt;div class=figure>&lt;/div>
566566
</pre>
567567
<img alt="sample rendering" src="images/16.png">
568568
</div>
@@ -573,8 +573,8 @@ The 'clear' property</h2>
573573
<pre>
574574
.figure { float-reference: column; float: bottom; clear: bottom }
575575

576-
&ltdiv class=figure>&lt;/div>
577-
&ltdiv class=figure>&lt;/div>
576+
&lt;div class=figure>&lt;/div>
577+
&lt;div class=figure>&lt;/div>
578578
</pre>
579579

580580
<img alt="sample rendering" src="images/17.png">
@@ -588,8 +588,8 @@ The 'clear' property</h2>
588588
<pre>
589589
.figure { float-reference: column; float: bottom; clear: top }
590590

591-
&ltdiv class=figure>&lt;/div>
592-
&ltdiv class=figure>&lt;/div>
591+
&lt;div class=figure>&lt;/div>
592+
&lt;div class=figure>&lt;/div>
593593
</pre>
594594

595595
<img alt="sample rendering" src="images/16.png">
@@ -602,8 +602,8 @@ The 'clear' property</h2>
602602
<pre>
603603
.figure { float-reference: column; float: bottom; clear: bottom }
604604

605-
&ltdiv class=figure>&lt;/div>
606-
&ltdiv class=figure>&lt;/div>
605+
&lt;div class=figure>&lt;/div>
606+
&lt;div class=figure>&lt;/div>
607607
</pre>
608608

609609
<img alt="sample rendering" src="images/17.png">
@@ -617,8 +617,8 @@ The 'clear' property</h2>
617617
<pre>
618618
.figure { float-reference: page; float: top; clear: top }
619619

620-
&ltdiv class=figure>&lt;/div>
621-
&ltdiv class=figure>&lt;/div>
620+
&lt;div class=figure>&lt;/div>
621+
&lt;div class=figure>&lt;/div>
622622
</pre>
623623

624624
</div>
@@ -631,8 +631,8 @@ The 'clear' property</h2>
631631
.figure.one { float-reference: column; float: top; clear: top }
632632
.figure.two { float-reference: column; float: bottom; clear: bottom }
633633

634-
&ltdiv class="figure one">&lt;/div>
635-
&ltdiv class="figure two">&lt;/div>
634+
&lt;div class="figure one">&lt;/div>
635+
&lt;div class="figure two">&lt;/div>
636636
</pre>
637637

638638
</div>
@@ -655,7 +655,7 @@ The 'clear' property</h2>
655655

656656
<pre class="propdef">
657657
Name: float-defer
658-
Value: &ltinteger> | last | none
658+
Value: &lt;integer> | last | none
659659
Initial: none
660660
Applies to: floats
661661
Inherited: no

css-regions-1/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1483,7 +1483,7 @@ Multi-column regions</h2>
14831483

14841484
&lt;body&gt;
14851485
&lt;article&gt;...&lt;/article&gt;
1486-
&lt;div id="multicol"&gt&lt;/div&gt;
1486+
&lt;div id="multicol"&gt;&lt;/div&gt;
14871487
&lt;div id="remainder"&gt;&lt;/div&gt;
14881488
&lt;/body&gt;
14891489
</pre>

css-tables-3/Overview.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ spec:css-sizing-3; type:property; text:box-sizing
774774
A table-root is said to be laid out <dfn>in fixed mode</dfn>
775775
whenever the computed value of the 'table-layout' property is equal to <code>fixed</code>,
776776
and the specified width of the table root is either
777-
a <code>&lt;length-percentage&gt</code>,
777+
a <code>&lt;length-percentage&gt;</code>,
778778
<code>min-content</code> or
779779
<code>fit-content</code>.
780780
When the specified width is not one of those values,

css-ui-3/Overview.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,8 @@ Sample HTML fragments, renderings, and your browser:
710710
<table class="awesome-table data">
711711
<thead><th>HTML<th>Reference rendering<th>Your Browser</thead>
712712
<tr>
713-
<td><code highlight=html>&ltdiv>שלום 123456&lt;/div></code><td><div style="font-family:monospace">123456 ם…</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis">שלום 123456</div>
714-
<tr><td><code highlight=html>&ltdiv dir=rtl>שלום 123456&lt;/div></code><td><div style="font-family:monospace">…456 שלום</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis" dir=rtl>שלום 123456</div>
713+
<td><code highlight=html>&lt;div>שלום 123456&lt;/div></code><td><div style="font-family:monospace">123456 ם…</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis">שלום 123456</div>
714+
<tr><td><code highlight=html>&lt;div dir=rtl>שלום 123456&lt;/div></code><td><div style="font-family:monospace">…456 שלום</div><td><div style="font-family: monospace; white-space: pre; overflow: hidden; width: 9ch; text-overflow: ellipsis" dir=rtl>שלום 123456</div>
715715

716716
</table>
717717

0 commit comments

Comments
 (0)