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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/resize-child-within-overflow-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 {
6 document.getElementById('child').style.width = '600px';
7 }
8 window.onload = runRepaintTest;
9 </script>
10 <style> 2 <style>
11 body { 3 body {
12 margin: 0; 4 margin: 0;
13 } 5 }
14 .container { 6 .container {
15 position: absolute; 7 position: absolute;
16 height: 1000px; 8 height: 1000px;
17 background-color: blue; 9 background-color: blue;
18 } 10 }
19 #child { 11 #child {
20 width: 400px; 12 width: 600px;
21 } 13 }
22 .overflow { 14 .overflow {
23 width: 800px; 15 width: 800px;
24 height: 50px; 16 height: 50px;
25 } 17 }
26 </style> 18 </style>
27 <div class="container"> 19 <div class="container">
28 <div id="child"> 20 <div id="child">
29 <div class="overflow"></div> 21 <div class="overflow"></div>
30 </div> 22 </div>
31 </div> 23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698