Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: LayoutTests/paint/invalidation/spv2/justify-items-overflow-change-expected.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <script src="resources/text-based-repaint.js"></script>
3 <script>
4 function repaintTest() {
5 document.getElementById('container').style.justifyItems = 'end safe';
6 }
7 onload = runRepaintTest;
8 </script>
9 <style> 2 <style>
10 body { 3 body {
11 margin: 0; 4 margin: 0;
12 } 5 }
13 #container { 6 #container {
14 display: grid; 7 display: grid;
15 grid: 100px 100px / 300px; 8 grid: 100px 100px / 300px;
16 justify-items: end true; 9 justify-items: end safe;
17 width: 200px; 10 width: 200px;
18 height: 300px; 11 height: 300px;
19 background-color: red; 12 background-color: red;
20 } 13 }
21 .item1 { 14 .item1 {
22 grid-row: 1; 15 grid-row: 1;
23 grid-column: 1; 16 grid-column: 1;
24 background-color: green; 17 background-color: green;
25 width: 160px; 18 width: 160px;
26 } 19 }
27 .item2 { 20 .item2 {
28 grid-row: 1; 21 grid-row: 1;
29 grid-column: 2; 22 grid-column: 2;
30 background-color: green; 23 background-color: green;
31 width: 50px; 24 width: 50px;
32 </style> 25 </style>
33 <p style="height: 20px">Tests invalidation on justify-items style change. Passes if there is no red.</p> 26 <p style="height: 20px">Tests invalidation on justify-items style change. Passes if there is no red.</p>
34 <div id="container"> 27 <div id="container">
35 <div class="item1"> 28 <div class="item1">
36 <div style="height: 50px"></div> 29 <div style="height: 50px"></div>
37 </div> 30 </div>
38 <div class="item2"> 31 <div class="item2">
39 <div style="height: 50px"></div> 32 <div style="height: 50px"></div>
40 </div> 33 </div>
41 </div> 34 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698