-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CSSTransitionDiscrete: Fix align related crashes
Bug: 1399631, 1413556 Change-Id: Id7f437d698928c5e62dddde07d849d3f4cc1e059
- Loading branch information
1 parent
2d1ad05
commit a229383
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<link rel=author href="mailto:[email protected]"> | ||
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="/css/support/interpolation-testcommon.js"></script> | ||
|
||
<body> | ||
<script> | ||
test_no_interpolation({ | ||
property: 'align-content', | ||
from: 'initial', | ||
to: 'baseline' | ||
}); | ||
|
||
test_no_interpolation({ | ||
property: 'align-items', | ||
from: 'initial', | ||
to: 'baseline' | ||
}); | ||
|
||
test_no_interpolation({ | ||
property: 'align-self', | ||
from: 'initial', | ||
to: 'baseline' | ||
}); | ||
</script> |