Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/floats/crashtests/float-dynamic-change-6.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
.placeholder:first-line { }
.inner {
float: inherit;
}
.inner::after {
position: absolute;
float: inherit;
content: open-quote;
}
</style>
<div id="target" style="float: left;">
<div class="inner"></div>
</div>
<script>
document.body.offsetTop;
target.style.float = '';
</script>