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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/box-sizing-padding-keeping-size.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/box-sizing-padding-keeping-size.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 ];
7 function paintInvalidationTest()
5 { 8 {
6 document.getElementById('target1').className = 'content-box'; 9 document.getElementById('target1').className = 'content-box';
7 document.getElementById('target2').className = 'border-box'; 10 document.getElementById('target2').className = 'border-box';
8 } 11 }
9 window.onload = runRepaintTest; 12 window.onload = runPaintInvalidationTest;
10 </script> 13 </script>
11 <style> 14 <style>
12 body { 15 body {
13 margin: 0; 16 margin: 0;
14 } 17 }
15 div { 18 div {
16 position: absolute; 19 position: absolute;
17 background-color: green; 20 background-color: green;
18 } 21 }
19 .border-box { 22 .border-box {
20 width: 100px; 23 width: 100px;
21 height: 100px; 24 height: 100px;
22 box-sizing: border-box; 25 box-sizing: border-box;
23 } 26 }
24 .content-box { 27 .content-box {
25 width: 60px; 28 width: 60px;
26 height: 60px; 29 height: 60px;
27 box-sizing: content-box; 30 box-sizing: content-box;
28 padding: 20px; 31 padding: 20px;
29 } 32 }
30 </style> 33 </style>
31 <div id="target1" class="border-box" style="top: 0px"></div> 34 <div id="target1" class="border-box" style="top: 0px"></div>
32 <div id="target2" class="content-box" style="top: 200px"></div> 35 <div id="target2" class="content-box" style="top: 200px"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698