blob: ba60abcf67e46943edd284b98fca2f11c657759c [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
.flexbox {
display: flex;
}
.flex-item {
width: 50px;
height: 50px;
margin-top: 10px;
background-color: green;
}
</style>
</head>
<body>
<div class="flexbox">
<div id="flex-item" class="flex-item"></div>
</div>
<script>
// This should not crash/trigger an assert
window.getComputedStyle(document.getElementById("flex-item")).marginTop;
</script>
</body>
</html>