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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/justify-content-position-change.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 <!-- Based on fast/repaint/justify-content-position-change.html -->
1 <!DOCTYPE HTML> 2 <!DOCTYPE HTML>
2 <script src="resources/text-based-repaint.js"></script> 3 <script src="resources/paint-invalidation-test.js"></script>
3 <script> 4 <script>
4 function repaintTest() { 5 window.expectedPaintInvalidationObjects = [
6 "LayoutBlockFlow DIV class='item'",
7 "LayoutBlockFlow DIV",
8 "LayoutBlockFlow DIV class='item'",
9 "LayoutBlockFlow DIV",
10 ];
11 function paintInvalidationTest() {
5 document.getElementById('container').style.justifyContent = 'flex-start'; 12 document.getElementById('container').style.justifyContent = 'flex-start';
6 } 13 }
7 onload = runRepaintTest; 14 onload = runPaintInvalidationTest;
8 </script> 15 </script>
9 <style> 16 <style>
10 body { 17 body {
11 margin: 0; 18 margin: 0;
12 } 19 }
13 #container { 20 #container {
14 display: flex; 21 display: flex;
15 justify-content: center; 22 justify-content: center;
16 width: 200px; 23 width: 200px;
17 height: 300px; 24 height: 300px;
18 background-color: orange; 25 background-color: orange;
19 } 26 }
20 .item { 27 .item {
21 background-color: green; 28 background-color: green;
22 border: solid thin blue; 29 border: solid thin blue;
23 width: 50px; 30 width: 50px;
24 } 31 }
25 </style> 32 </style>
26 <p style="height: 20px">Tests invalidation on justify-content style change. Pass es if only one big orange bar appear aligned to the box's right edge.</p> 33 <p style="height: 20px">Tests invalidation on justify-content style change. Pass es if only one big orange bar appear aligned to the box's right edge.</p>
27 <div id="container"> 34 <div id="container">
28 <div class="item"> 35 <div class="item">
29 <div style="height: 50px"></div> 36 <div style="height: 50px"></div>
30 </div> 37 </div>
31 <div class="item"> 38 <div class="item">
32 <div style="height: 50px"></div> 39 <div style="height: 50px"></div>
33 </div> 40 </div>
34 </div> 41 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698