mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision e03a9b1341ae9bdb1e4fa03765257b84d26fe2f1
This commit is contained in:
parent
7d05c76d18
commit
20a833eb75
5167 changed files with 4696 additions and 297370 deletions
|
@ -80,6 +80,13 @@ var gEasingTests = [
|
|||
}
|
||||
];
|
||||
|
||||
const gEasingParsingTests = [
|
||||
['linear', 'linear'],
|
||||
['ease-in-out', 'ease-in-out'],
|
||||
['Ease\\2d in-out', 'ease-in-out'],
|
||||
['ease /**/', 'ease'],
|
||||
];
|
||||
|
||||
const gInvalidEasings = [
|
||||
'',
|
||||
'7',
|
||||
|
@ -87,6 +94,9 @@ const gInvalidEasings = [
|
|||
'initial',
|
||||
'inherit',
|
||||
'unset',
|
||||
'unrecognized',
|
||||
'var(--x)',
|
||||
'ease-in-out, ease-out',
|
||||
'cubic-bezier(1.1, 0, 1, 1)',
|
||||
'cubic-bezier(0, 0, 1.1, 1)',
|
||||
'cubic-bezier(-0.1, 0, 1, 1)',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue