Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-tables/iframe-display-table-content-insertion.html - WPT Dashboard Interop Dashboard
<!doctype html>
<link rel="match" href="iframe-display-table-content-insertion-ref.html">
<div><iframe
id=f style="display: table-column-group"></iframe><script>
document.body.offsetWidth;
var span = document.createElement("span");
span.textContent = "This text should be before the iframe";
f.before(span);
</script></div>