mirror of
https://github.com/servo/servo.git
synced 2025-06-28 02:53:48 +01:00
16 lines
523 B
HTML
16 lines
523 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* {
|
|
transition: all ease-out, linear 2733ms background, all calc(2s / 0) steps(706573049);
|
|
}
|
|
</style>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
const style = document.createElement("style")
|
|
document.head.appendChild(style)
|
|
const selection = window.getSelection()
|
|
style.sheet.insertRule(`* { background-clip: padding-box, padding-box, border-box, content-box; }`, 0)
|
|
selection.selectAllChildren(style)
|
|
style.sheet.disabled = true
|
|
})
|
|
</script>
|