blob: dd624a6cf110220afa74968ec11367fb8921ae11 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script>
function runTest() {
description('Tests that vh unit works for border-width property');
shouldBeTrue("document.getElementById('borderDiv').offsetHeight > 100");
isSuccessfullyParsed();
}
</script>
<style>
#borderDiv{
width: 100px;
height: 100px;
background: green;
border: 5vh solid red;
}
</style>
</head>
<body onload="runTest()">
<div id="borderDiv"></div>
</body>
</html>