blob: 1d673bf9a2990926f8581842615357f9d28fba20 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
border-width: 21px 30px 30px 21px;
width: 75px;
height: 75px;
margin: 10px;
display: inline-block;
border-image-source: url("resources/border-image-srgb-color-profile.png") !important
}
div.rr {
-webkit-border-image: none 21 30 30 21 repeat repeat;
border-style: solid;
}
div.rs {
-webkit-border-image: none 21 30 30 21 repeat stretch;
border-style: solid;
}
div.sr {
-webkit-border-image: none 21 30 30 21 stretch repeat;
border-style: solid;
}
div.ss {
-webkit-border-image: none 21 30 30 21 stretch stretch;
border-style: solid;
}
</style>
</head>
<body>
<div class="rr"></div>
<div class="rs"></div>
<br>
<div class="sr"></div>
<div class="ss"></div>
</body>
<script>
window.onload = function() {
if (window.testRunner)
setTimeout(function() { testRunner.setColorProfile('colorSpin', done) }, 100);
};
function done() {
setTimeout(function() { testRunner.notifyDone() }, 0);
}
if (window.testRunner) {
testRunner.dumpAsTextWithPixelResults();
testRunner.waitUntilDone();
}
</script>
</html>