| .content { -webkit-flow-into: content-flow; } |
| -webkit-flow-from: content-flow; |
| <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103501">Fix content node renderers ordering inside the named flow thread</a>.</p> |
| <p>The test verifies the order of elements preserves when the text nodes have flow-into set because of style cloning.</p> |
| <p>On success, you should see the first inline, the paragraph and the second inline.</p> |
| <p id="para">A paragraph that can be block or inline.</p> |
| <div class="region"></div> |
| var para = document.getElementById("para"); |
| para.style.display = "block"; |
| para.style.display = "inline"; |