Skip to content

Commit cb415e6

Browse files
committed
[compositing-1] Fix mismatched end tag errors that were breaking build of all specs.
This fixes mismatched end tag errors from bikeshed, mostly by removing them. These look like errors resulting from prior conversion to use bikeshed. They started being fatal as a result of a recent bikeshed update: https://lists.w3.org/Archives/Public/spec-prod/2025OctDec/0004.html
1 parent b23759d commit cb415e6

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

compositing-1/Overview.bs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,6 @@ The result color is always at least as light as either of the two constituent co
12271227
B(Cb, Cs) = 1 - [(1 - Cb) x (1 - Cs)]
12281228
= Cb + Cs -(Cb x Cs)
12291229
</pre>
1230-
</p>
12311230
<div class="figure">
12321231
<img src="examples/screen.png" alt="example of screen blending">
12331232
<p class="caption"></p>
@@ -1365,7 +1364,6 @@ Painting with white inverts the <a>backdrop</a> color; painting with black produ
13651364
<pre>
13661365
B(Cb, Cs) = | Cb - Cs |
13671366
</pre>
1368-
</p>
13691367
<div class="figure">
13701368
<img src="examples/difference.png" alt="example of difference blending">
13711369
<p class="caption"></p>
@@ -1378,7 +1376,6 @@ Produces an effect similar to that of the Difference mode but lower in contrast.
13781376
<pre>
13791377
B(Cb, Cs) = Cb + Cs - 2 x Cb x Cs
13801378
</pre>
1381-
</p>
13821379
<div class="figure">
13831380
<img src="examples/exclusion.png" alt="example of exclusion blending">
13841381
<p class="caption"></p>
@@ -1486,8 +1483,8 @@ Creates a color with the luminosity of the source color and the hue and saturati
14861483
Note: In the following example, the elements used to construct the paper airplane are within a group. Each of these elements has their blend mode set to multiply.
14871484

14881485
<div class="example" id="ex-isolated-group">
1489-
The airplane on the left is a normal group, the airplane on the right is an <a href="#isolatedgroups">isolated group</a>.</p>
1490-
<p>
1486+
The airplane on the left is a normal group, the airplane on the right is an <a href="#isolatedgroups">isolated group</a>.
1487+
14911488
In the isolated group, the elements within the group are composited onto an empty initial backdrop, this stops the elements within the group multiplying with the backdrop.
14921489
In the normal group, the elements within the group are composited onto the initial backdrop containing the land and sky. Therefore the elements of the airplane multiply with the land and sky.
14931490
In both instances, the result of the group composite is composited onto the land and sky using the normal mix-blend-mode (the default mix-blend-mode applied to the group).
@@ -1507,7 +1504,7 @@ Privacy Considerations</h2>
15071504
<h2 id="security" class="no-num">
15081505
Security Considerations</h2>
15091506

1510-
It is important that the timing to the blending and compositing operations is independent of the source and destination pixel. Operations must be implemented in such a way that they always take the same amount of time regardless of the pixel values.</p>
1507+
It is important that the timing to the blending and compositing operations is independent of the source and destination pixel. Operations must be implemented in such a way that they always take the same amount of time regardless of the pixel values.
15111508

15121509
<div class="note">
15131510
<p>

0 commit comments

Comments
 (0)