mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
14 lines
362 B
HTML
14 lines
362 B
HTML
<!doctype html>
|
|
<html class="test-wait">
|
|
<script>
|
|
window.addEventListener("load", () => {
|
|
const a = document.createElement("style")
|
|
document.documentElement.appendChild(a)
|
|
a.textContent = ":first-line{}"
|
|
document.adoptNode(document.body)
|
|
document.startViewTransition().ready.then(() => {
|
|
document.documentElement.className = "";
|
|
});
|
|
})
|
|
</script>
|