mirror of
https://github.com/servo/servo.git
synced 2025-07-14 10:53:42 +01:00
20 lines
560 B
HTML
20 lines
560 B
HTML
<!DOCTYPE html>
|
|
<meta charset="UTF-8">
|
|
<title>toggle-group is not animatable</title>
|
|
<link rel="help" href="https://tabatkins.github.io/css-toggle/#toggle-group-property">
|
|
<meta name="assert" content="toggle-group 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-group',
|
|
from: 'atoggle',
|
|
to: 'yourtoggle',
|
|
underlying: 'mytoggle',
|
|
});
|
|
</script>
|
|
</body>
|