Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/frameset-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="dgrogan@chromium.org">
<meta name="assert" content="No crash when a flexbox lays out a frameset with a border in the main axis direction.">
<style>
frameset {
border-right: 50px solid red;
}
</style>
<div id='flex' style="display: flex"></div>
<script>
// I couldn't get the parser to accept a framset inside a div, so this uses
// JS instead.
flex.appendChild(document.createElement('frameset'));
</script>