mirror of
https://github.com/servo/servo.git
synced 2025-07-14 10:53:42 +01:00
20 lines
562 B
HTML
20 lines
562 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<title>toggle-root is not animatable</title>
|
|
<link rel="help" href="https://tabatkins.github.io/css-toggle/#toggle-root-property">
|
|
<meta name="assert" content="toggle-root is not animatable">
|
|
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/css/support/interpolation-testcommon.js"></script>
|
|
|
|
<body>
|
|
<script>
|
|
test_not_animatable({
|
|
property: 'toggle-root',
|
|
from: 'none',
|
|
to: 'yourtoggle 3 at 1',
|
|
underlying: 'mytoggle 2',
|
|
});
|
|
</script>
|
|
</body>
|