Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-values/crashtests/viewport-unit-inline-style-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Don't crash when setting viewport units on inline style</title>
<div id="div">
PASS if no crash
</div>
<script>
div.style.setProperty("margin-bottom", "1px");
div.offsetTop;
div.style.setProperty("margin-bottom", "1vh");
</script>