OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="resources/region-style.css"> | 4 <link rel="stylesheet" href="resources/region-style.css"> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=73735">73735</a>
: Collect SVG nodes in render flow thread</p> | 7 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=73735">73735</a>
: Collect SVG nodes in render flow thread</p> |
8 <p>It should NOT be possible to collect a "svg" node that is not root in
to a render flow thread.</p> | 8 <p>It should NOT be possible to collect a "svg" node that is not root in
to a render flow thread.</p> |
9 <p>On success, you should see a green box below.</p> | 9 <p>On success, you should see a green box below.</p> |
10 <div class="redBox"></div> | 10 <div class="redBox"></div> |
11 <svg xmlns="http://www.w3.org/2000/svg" style="position: relative; top:
-50px; height: 100px;"> | 11 <svg xmlns="http://www.w3.org/2000/svg" style="position: relative; top:
-50px; height: 100px;"> |
12 <svg style="-webkit-flow-into:thread"> | 12 <svg style="-webkit-flow-into:thread"> |
13 <rect width="50" height="50" fill="green"></rect> | 13 <rect width="50" height="50" fill="green"></rect> |
14 </svg> | 14 </svg> |
15 </svg> | 15 </svg> |
16 </body> | 16 </body> |
17 </html> | 17 </html> |
OLD | NEW |