| <!doctype html> |
| <html> |
| <head> |
| <style> |
| #absolute { position: absolute; -webkit-flow-into: flow; width: 50px; height: 50px; } |
| </style> |
| </head> |
| <body> |
| <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=88133">WebKit Bug 88133</a> Collecting a fixed positioned element in a named flow causes WebKit to crash.</p> |
| <p>This test collects an absolutely positioned object into a named flow without flowing it into a region.</p> |
| <p>The test passes if it does not crash or assert.</p> |
| <div id="absolute"></div> |
| <p>PASS</p> |
| <script> |
| if (window.testRunner) |
| window.testRunner.dumpAsText(); |
| </script> |
| </body> |
| </html> |