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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/background-clip-content-box-repaint-expected.html

Issue 2327223002: Move all remaining fast/repaint tests 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 #container { 3 #container {
4 position: relative; 4 position: relative;
5 width: 100px; 5 width: 100px;
6 } 6 }
7 7
8 #dynamic-padding { 8 #dynamic-padding {
9 position: absolute; 9 position: absolute;
10 left: 0; 10 left: 0;
11 top: 0; 11 top: 0;
12 12
13 width: 280px; 13 width: 280px;
14 height: 280px; 14 height: 280px;
15 padding: 10px; 15 padding: 10px;
16 16
17 background-clip: content-box; 17 background-clip: content-box;
18 background-color: yellow; 18 background-color: yellow;
19 } 19 }
20 </style> 20 </style>
21 <div id="container"> 21 <div id="container">
22 <div id="dynamic-padding"></div> 22 <div id="dynamic-padding"></div>
23 </div> 23 </div>
24 This test verifies an element with percentage padding and background-clip:conten t-box correctly repaints when its padding changes due to container layout. 24 This test verifies an element with percentage padding and background-clip:conten t-box correctly repaints when its padding changes due to container layout.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698