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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #container {
4 position: relative;
5 width: 100px;
6 }
7
8 #dynamic-padding {
9 position: absolute;
10 left: 0;
11 top: 0;
12
13 width: 280px;
14 height: 280px;
15 padding: 10px;
16
17 background-clip: content-box;
18 background-color: yellow;
19 }
20 </style>
21 <div id="container">
22 <div id="dynamic-padding"></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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698