blob: 4c38e18781bfdbcddce02c1cc5cd3336a7529e85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!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>
|