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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/resize-with-border-clipped-expected.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 body { 3 body {
4 margin: 0; 4 margin: 0;
5 } 5 }
6 #container { 6 #container {
7 position: absolute; 7 position: absolute;
8 top: 100px; 8 top: 100px;
9 left: 100px; 9 left: 100px;
10 width: 200px; 10 width: 200px;
11 height: 200px; 11 height: 200px;
12 overflow: hidden; 12 overflow: hidden;
13 } 13 }
14 #target { 14 #target {
15 width: 300px; 15 width: 300px;
16 height: 300px; 16 height: 300px;
17 border: green 10px solid; 17 border: green 10px solid;
18 background-color: blue; 18 background-color: blue;
19 } 19 }
20 </style> 20 </style>
21 Tests invalidation when a box with border is resized within a clipping container . 21 Tests invalidation when a box with border is resized within a clipping container .
22 Passes if the result paint rects don't exceed the container. 22 Passes if the result paint rects don't exceed the container.
23 <div id="container"> 23 <div id="container">
24 <div id="target"></div> 24 <div id="target"></div>
25 </div> 25 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698