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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/backgrounds/background-tiling-sub-pixel-expected.html

Issue 2689993003: Account for borders and padding when calculating background tile size. (Closed)
Patch Set: Rebaselined tests again. Created 3 years, 9 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 div {
4 background-image: -webkit-repeating-linear-gradient(top left, white, blu e 90px);
5 background-origin: content-box;
6 }
7
8 #a {
9 width: 100px;
10 height: 100px;
11 }
12
13 #b {
14 border: 1px solid black;
15 width: 98px;
16 height: 98px;
17 }
18 </style>
19
20 <div id=a></div>
21 <div id=b></div>
22
23 The gradients should fill the entire boxes and not repeat.
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698