1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/border-image/multicolor-image-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +<!DOCTYPE html> 1.5 +<html lang="en-US"> 1.6 +<head> 1.7 + <title>test of border-image</title> 1.8 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 1.9 + <meta http-equiv="Content-Style-Type" content="text/css"> 1.10 + <style type="text/css"> 1.11 + 1.12 + div { 1.13 + border-width: 7px; 1.14 + border-style: solid; 1.15 + background: red; /* fail if this shows through */ 1.16 + background-image: url('3x3multicolor.png'); /* fail if this shows through */ 1.17 + border-image: url('3x3multicolor.png') 1 1 1 1 fill; 1.18 + -khtml-border-image: url('3x3multicolor.png') 1 1 1 1 fill; 1.19 + border-image: url('3x3multicolor.png') 1 1 1 1 fill; 1.20 + } 1.21 + 1.22 + </style> 1.23 +</head> 1.24 +<body> 1.25 +<div style="width: 100px; height: 5px"></div> 1.26 +</body> 1.27 +</html>