1 <!-- Based on fast/repaint/align-self-change-no-flex.html -->
3 <script src=
"resources/paint-invalidation-test.js"></script>
5 window
.expectedPaintInvalidationObjects
= [
7 function paintInvalidationTest() {
8 document
.getElementsByClassName('item')[0].style
.alignSelf
= 'stretch';
9 document
.getElementsByClassName('item')[1].style
.alignSelf
= 'stretch';
11 onload
= runPaintInvalidationTest
;
17 background-color: blue;
20 background-color: green;
21 border: solid thin blue;
24 There should be no invalidations when align-self changes on a non-flex container.
27 <div style=
"height: 100px"></div>
30 <div style=
"height: 150px"></div>