| Index: LayoutTests/fast/repaint/align-content-change-keeping-geometry.html
|
| diff --git a/LayoutTests/fast/repaint/align-content-change-keeping-geometry.html b/LayoutTests/fast/repaint/align-content-change-keeping-geometry.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2961a6abfa47a0d48114f1e2b0e8db058353b61c
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/repaint/align-content-change-keeping-geometry.html
|
| @@ -0,0 +1,28 @@
|
| +<!DOCTYPE HTML>
|
| +<script src="resources/text-based-repaint.js"></script>
|
| +<script>
|
| +function repaintTest() {
|
| + document.getElementById('container').style.alignContent = 'center';
|
| +}
|
| +onload = runRepaintTest;
|
| +</script>
|
| +<style>
|
| +#container {
|
| + display: flex;
|
| + align-items: flex-start;
|
| + width: 200px;
|
| + height: 300px;
|
| + background-color: red;
|
| +}
|
| +.item {
|
| + background-color: green;
|
| + border: solid thin blue;
|
| + width: 100px;
|
| + height: 300px;
|
| +}
|
| +</style>
|
| +<p style="height: 20px">There should be no invalidations because align-content style change causes no visual change.</p>
|
| +<div id="container">
|
| + <div class="item"></div>
|
| + <div class="item"></div>
|
| +</div>
|
|
|