You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[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
Copy file name to clipboardExpand all lines: compositing-1/Overview.bs
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1227,7 +1227,6 @@ The result color is always at least as light as either of the two constituent co
1227
1227
B(Cb, Cs) = 1 - [(1 - Cb) x (1 - Cs)]
1228
1228
= Cb + Cs -(Cb x Cs)
1229
1229
</pre>
1230
-
</p>
1231
1230
<div class="figure">
1232
1231
<img src="examples/screen.png" alt="example of screen blending">
1233
1232
<p class="caption"></p>
@@ -1365,7 +1364,6 @@ Painting with white inverts the <a>backdrop</a> color; painting with black produ
1365
1364
<pre>
1366
1365
B(Cb, Cs) = | Cb - Cs |
1367
1366
</pre>
1368
-
</p>
1369
1367
<div class="figure">
1370
1368
<img src="examples/difference.png" alt="example of difference blending">
1371
1369
<p class="caption"></p>
@@ -1378,7 +1376,6 @@ Produces an effect similar to that of the Difference mode but lower in contrast.
1378
1376
<pre>
1379
1377
B(Cb, Cs) = Cb + Cs - 2 x Cb x Cs
1380
1378
</pre>
1381
-
</p>
1382
1379
<div class="figure">
1383
1380
<img src="examples/exclusion.png" alt="example of exclusion blending">
1384
1381
<p class="caption"></p>
@@ -1486,8 +1483,8 @@ Creates a color with the luminosity of the source color and the hue and saturati
1486
1483
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.
1487
1484
1488
1485
<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
+
1491
1488
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.
1492
1489
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.
1493
1490
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>
1507
1504
<h2 id="security" class="no-num">
1508
1505
Security Considerations</h2>
1509
1506
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.
0 commit comments