blob: 99f8d6c2587dae96da3209388f142ab1ea840fcd [file] [log] [blame]
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
.parent {
--url: url('http://parent.txt');
}
.target {
--url: url('http://underlying.txt');
}
</style>
<body>
<script src="../interpolation/resources/interpolation-test.js"></script>
<script>
CSS.registerProperty({
name: '--url',
syntax: '<url>',
initialValue: "url('http://initial.txt')",
inherits: false,
});
assertNoInterpolation({
property: '--url',
from: neutralKeyframe,
to: "url('http://value.txt')",
});
assertNoInterpolation({
property: '--url',
from: 'initial',
to: "url('http://value.txt')",
});
assertNoInterpolation({
property: '--url',
from: 'inherit',
to: "url('http://value.txt')",
});
assertNoInterpolation({
property: '--url',
from: 'unset',
to: "url('http://value.txt')",
});
assertNoInterpolation({
property: '--url',
from: "url('http://a.txt')",
to: "url('http://b.txt')",
});
</script>
</body>