repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
paint
/
invalidation
/
spv2
/
align-self-change-no-flex-expected.html
blob
d3819d01b40b1bcb7888f99590356a272cb1a95f
1
<!DOCTYPE
HTML
>
2
<style>
3
.container {
4
width:
200
px;
5
height:
300
px;
6
background-color: blue;
7
}
8
.item {
9
background-color: green;
10
border: solid thin blue;
11
align-self: stretch;
12
}
13
</style>
14
There should be no invalidations when align-self changes on a non-flex container.
15
<div
id
=
"container"
>
16
<div
class
=
"item"
>
17
<div
style
=
"height: 100px"
></div>
18
</div>
19
<div
class
=
"item"
>
20
<div
style
=
"height: 150px"
></div>
21
</div>
22
</div>