layout/reftests/border-image/repeat-image-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!DOCTYPE html>
michael@0 2 <html lang="en-US">
michael@0 3 <head>
michael@0 4 <title>test of border-image</title>
michael@0 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
michael@0 6 <meta http-equiv="Content-Style-Type" content="text/css">
michael@0 7 <style type="text/css">
michael@0 8
michael@0 9 div.p1 {
michael@0 10 background: red; /* fail if this shows through */
michael@0 11 background-image: url('3x3multicolor.png'); /* fail if this shows through */
michael@0 12 border-width: 1px 3px;
michael@0 13 border-style: solid;
michael@0 14 border-image: url('4x4multicolor.png') 1 1 1 1 repeat;
michael@0 15 -khtml-border-image: url('4x4multicolor.png') 1 1 1 1 repeat;
michael@0 16 border-image: url('4x4multicolor.png') 1 1 1 1 repeat;
michael@0 17 }
michael@0 18
michael@0 19 div.p2 {
michael@0 20 background: red; /* fail if this shows through */
michael@0 21 background-image: url('3x3multicolor.png'); /* fail if this shows through */
michael@0 22 border-width: 1px 3px;
michael@0 23 border-style: solid;
michael@0 24 border-image: url('4x4multicolor.png') 1 1 1 1;
michael@0 25 -khtml-border-image: url('4x4multicolor.png') 1 1 1 1;
michael@0 26 border-image: url('4x4multicolor.png') 1 1 1 1;
michael@0 27 }
michael@0 28
michael@0 29 </style>
michael@0 30 </head>
michael@0 31 <body>
michael@0 32 <div class="p1" style="width: 4px; height: 2px"></div>
michael@0 33 <!--<div class="p2" style="width: 4px; height: 2px"></div> -->
michael@0 34 </body>
michael@0 35 </html>

mercurial