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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/border-image-width-rounding-expected.html

Issue 2640143005: Support subpixel layout for borders. (Closed)
Patch Set: Rebaselined tests. Created 3 years, 10 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 <html> 2 <html>
3 <head> 3 <head>
4 <title>Test non-integer border-image-width</title> 4 <title>Test non-integer border-image-width</title>
5 <style> 5 <style>
6 .test { 6 .test {
7 border-style: solid; 7 border-style: solid;
8 border-width: 1.9px; 8 border-width: 1.9px;
9 border-color: green; 9 border-color: green;
10 width: 100px; 10 width: 98px;
11 height: 100px; 11 height: 98px;
12 } 12 }
13 </style> 13 </style>
14 </head> 14 </head>
15 <body> 15 <body>
16 <p> 16 <p>
17 Test that border-image-width is rounded/truncated in the same 17 Test that border-image-width is rounded/truncated in the same
18 way as border-width. There should be a green border around a 18 way as border-width. There should be a green border around a
19 100x100 square below. 19 100x100 square below.
20 </p> 20 </p>
21 <div class="test"></div> 21 <div class="test"></div>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698