mirror of
https://github.com/servo/servo.git
synced 2025-07-31 11:10:22 +01:00
20 lines
376 B
HTML
20 lines
376 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>View transitions: root element style changes during transition</title>
|
|
<link rel="help" href="https://github.com/WICG/view-transitions">
|
|
<link rel="author" href="mailto:vmpstr@chromium.org">
|
|
<style>
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
contain: paint;
|
|
background: green;
|
|
}
|
|
|
|
body {
|
|
background: grey;
|
|
}
|
|
</style>
|
|
|
|
<div id=target></div>
|
|
|