blob: 68a519bf07f77c794bfe5536a87a3ad60e60e77f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script>
function runTest() {
description('Tests that vw unit works for outline-width property');
shouldNotBeEqualToString("window.getComputedStyle(document.getElementById('borderDiv'),null).getPropertyValue('outline-width')", "0px");
isSuccessfullyParsed();
}
</script>
<style>
#borderDiv{
width: 100px;
height: 100px;
background: green;
outline: 2vw solid red;
}
</style>
</head>
<body onload="runTest()">
<div id="borderDiv"></div>
</body>
</html>