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

Side by Side Diff: LayoutTests/fast/borders/border-image-width-numbers.html

Issue 54383006: Lift integer restriction on border-image-width and border-image-outset (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@length-relative-die-step-4-4
Patch Set: Re-added reftest to test rendering Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/fast/borders/border-image-width-numbers-computed-style.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>Test that numbers in border-image-width are rendered correctly</title>
5 <style>
6 .ref {
7 background: red;
8 width: 140px;
9 height: 140px;
10 position: absolute;
11 z-index: -1;
12 }
13 .test {
14 border-style: solid;
15 border-width: 20px;
16 border-image-width: 0 3.5;
17 border-image-slice: 21 30 30 21;
18 border-image-source: url(../css/resources/greenbox-100px.png);
19 width: 100px;
20 height: 100px;
21 }
22 </style>
23 </head>
24 <body>
25 <div class="ref"></div>
26 <div class="test"></div>
27 <p>There should be a green box above.</p>
28 </body>
29 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/borders/border-image-width-numbers-computed-style.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698