Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<title>Chromium bug: getComputedStyle() crashes with inset properties on abspos in multicol</title>
<style>
html {
column-count:2;
}
body {
transform: scale(1);
}
div#test {
column-count:2;
position:absolute;
}
</style>
<div id="test">
<div style="transform: scale(1)">
<ruby style="position: absolute">
<rt>foo</rt>
</ruby>
</div>
</div>
<script>
getComputedStyle(test).right;
</script>