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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/justify-items-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 = 'start';
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: 200px / 300px; 8 grid: 200px / 300px;
16 justify-items: end; 9 justify-items: start;
17 width: 200px; 10 width: 200px;
18 height: 300px; 11 height: 300px;
19 background-color: red; 12 background-color: red;
20 } 13 }
21 .item { 14 .item {
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: 50px; 18 width: 50px;
26 } 19 }
27 </style> 20 </style>
28 <p style="height: 20px">Tests invalidation on justify-items style change. Passes if green bar is left aligned.</p> 21 <p style="height: 20px">Tests invalidation on justify-items style change. Passes if green bar is left aligned.</p>
29 <div id="container"> 22 <div id="container">
30 <div class="item"> 23 <div class="item">
31 <div style="height: 50px"></div> 24 <div style="height: 50px"></div>
32 </div> 25 </div>
33 </div> 26 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698