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

Side by Side Diff: LayoutTests/fast/repaint/border-fit-lines.html

Issue 607593002: Remove -webkit-border-fit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t>
4 <script type="text/javascript">
5 function repaintTest()
6 {
7 var div = document.getElementById("target");
8 div.style.width = '100px';
9 }
10 </script>
11 </head>
12 <body onload="runRepaintTest()">
13 This should be a 100&times;100px green square with a black border:
14 <div style="height: 100px; -webkit-border-fit: lines; background: green; bor der: 2px solid black;">
15 <div id="target" style="display: inline-block; width: 10px; height: 10px ;"></div>
16 </div>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698