Skip to content

Commit e47ee80

Browse files
committed
Fix missing margin
1 parent 553f94d commit e47ee80

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

_posts/2025-11-02-this-month-in-servo.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,6 @@ Servo now supports several new web platform features:
2222
<img src="{{ '/img/blog/2025-11-diffie.png' | url }}" alt="servoshell nightly showing new support CompressionStream and synthetic bold">
2323
</figure>
2424

25-
<script>
26-
(function makeVideoPlayersClickable() {
27-
addEventListener("toggle", event => {
28-
const details = event.target.closest("details");
29-
console.log(details, details.open);
30-
if (!details?.open) {
31-
return;
32-
}
33-
const video = details.querySelector("video");
34-
video?.fastSeek(0);
35-
video?.play();
36-
console.log(details, video);
37-
}, true);
38-
})();
39-
</script>
40-
4125
In **servoshell** for **Android**, you can now enable **experimental mode** with just two taps (@jdm, #40054), use the **software keyboard** (@jdm, #40009), deliver **touch events** to web content (@mrobinson, #40240), and dismiss the location field (@jdm, #40049).
4226
**Pinch zoom** is now fully supported in both Servo and **servoshell**, taking into account the locations of pinch inputs (@mrobinson, @atbrakhi, #40083) and allowing keyboard scrolling when zoomed in (@mrobinson, @atbrakhi, #40108).
4327

@@ -176,3 +160,19 @@ For more details, head to our [Sponsorship page]({{ '/sponsorship/' | url }}).
176160
opacity: 0.75;
177161
}
178162
</style>
163+
164+
<script>
165+
(function makeVideoPlayersClickable() {
166+
addEventListener("toggle", event => {
167+
const details = event.target.closest("details");
168+
console.log(details, details.open);
169+
if (!details?.open) {
170+
return;
171+
}
172+
const video = details.querySelector("video");
173+
video?.fastSeek(0);
174+
video?.play();
175+
console.log(details, video);
176+
}, true);
177+
})();
178+
</script>

0 commit comments

Comments
 (0)