blob: 4c38e18781bfdbcddce02c1cc5cd3336a7529e85 [file] [log] [blame]
<!DOCTYPE html>
<title>Don't crash when setting viewport units on inline style</title>
<link rel="help" href="https://crbug.com/1402548">
<div id="div">
PASS if no crash
</div>
<script>
div.style.setProperty("margin-bottom", "1px");
div.offsetTop;
div.style.setProperty("margin-bottom", "1vh");
</script>