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-2.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<script>
const iframe = document.createElement('iframe');
iframe.sandbox = 'allow-top-navigation';
iframe.srcdoc = 'test';
iframe.style.position = 'absolute';
document.documentElement.appendChild(iframe);
iframe.onload = () => {
iframe.style.position = 'initial';
iframe.style.float = 'left';
iframe.style.zoom = '2';
};
</script>