Update CSS tests to revision 0698c2aa9ead844b6d7d10eafb096cb1118e13ef

This commit is contained in:
Ms2ger 2015-12-09 01:48:05 -05:00
parent 9aa1b1e408
commit 35c74aecc2
11290 changed files with 92400 additions and 49214 deletions

View file

@ -19,27 +19,27 @@
border-width: 15px 20px 35px 30px;
border-image-source: url("support/outline-5px-10px-15px-20px-green.png");
border-image-slice: 5 10 15 20; /* or 5% 10% 15% 20% : see border-image-slice-001 test */
border-image-width: 15% 20% 35% 30%;
/* 1 is default ; <number>s represent multiples of the corresponding
border-image-width: 15% 20% 35% 30%;
/* 1 is default ; <number>s represent multiples of the corresponding
computed border-width; % unit is a percentage of height or width of border-box.*/
border-image-outset: 0; /* 0 is default */
border-image-repeat: repeat repeat;
/* stretch is default; since the green area we repeat is an
undifferentiated and homogeneous image of green, then 'repeat' or
'stretch' will be equivalent, will do and should cause equivalent
border-image-repeat: repeat repeat;
/* stretch is default; since the green area we repeat is an
undifferentiated and homogeneous image of green, then 'repeat' or
'stretch' will be equivalent, will do and should cause equivalent
rendered layout. */
/*
Equivalent to this shorthand form (see border-image-slice-124 test):
border-image: url("support/outline-5px-10px-15px-20px-green.png") 5% 10% 15% 20% / 15% 20% 35% 30% / 0 repeat repeat;
border-image: url("support/outline-5px-10px-15px-20px-green.png") 5% 10% 15% 20% / 15% 20% 35% 30% / 0 repeat repeat;
or to this shorthand form (see border-image-slice-125 test):
border-image: url("support/outline-5px-10px-15px-20px-green.png") 5 10 15 20 / 15% 20% 35% 30% / 0 repeat repeat;
or to this shorthand form (see border-image-slice-126 test):
border-image: url("support/outline-5px-10px-15px-20px-green.png") 5% 10% 15% 20% / 1 1 1 1 / 0 repeat repeat;
or to this shorthand form (see border-image-slice-127 test):
or to this shorthand form (see border-image-slice-127 test):
border-image: url("support/outline-5px-10px-15px-20px-green.png") 5 10 15 20 / 1 1 1 1 / 0 repeat repeat;
*/