Handle the addition of the "fill" keyword to border-image. Bug 718757.

git-svn-id: http://svn.mozilla.org/projects/phonebook/trunk@100303 4eb1ac78-321c-0410-a911-ec516a8615a5
This commit is contained in:
fwenzel@mozilla.com 2012-01-24 11:23:05 +00:00
Родитель f7e940a2dd
Коммит 78170d4032
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -226,9 +226,11 @@ a:hover {
.vcard .footer {
}
.vcard .header {
border-image: url(../img/vcard_header_bg.png) 0 132 0 16 repeat stretch;
-moz-border-image: url(../img/vcard_header_bg.png) 0 132 0 16 repeat stretch;
-moz-border-image: url(../img/vcard_header_bg.png) 0 132 0 16 fill repeat stretch;
-webkit-border-image: url(../img/vcard_header_bg.png) 0 132 0 16 repeat stretch;
border-image: url(../img/vcard_header_bg.png) 0 132 0 16 fill repeat stretch;
border-style: solid;
border-width: 0 132px 0 16px;
height: 45px;
position: relative;
@ -248,9 +250,11 @@ a:hover {
float: right;
}
.vcard .body {
border-image: url(../img/vcard_body_bg.png) 0 16 0 16 repeat repeat;
-moz-border-image: url(../img/vcard_body_bg.png) 0 16 0 16 repeat repeat;
-moz-border-image: url(../img/vcard_body_bg.png) 0 16 0 16 fill repeat repeat;
-webkit-border-image: url(../img/vcard_body_bg.png) 0 16 0 16 repeat repeat;
border-image: url(../img/vcard_body_bg.png) 0 16 0 16 fill repeat repeat;
border-style: solid;
border-width: 0 16px;
color: #343434;
font-size: 0.875em;