Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .scope { | |
| 4 width: 200px; | |
| 5 height: 200px; | |
| 6 overflow: hidden; | |
| 7 } | |
| 8 </style> | |
| 9 <div class="scope"> | |
| 10 <table> | |
| 11 <tr> | |
| 12 <img src="autumn.jpg" width="150" height="148"> | |
| 13 <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> | |
| 14 <foreignObject width="100%" height="100%"> | |
| 15 <div style="width:100%; height:100%;"></div> | |
| 16 </foreignObject> | |
| 17 </svg> | |
| 18 </tr> | |
| 19 </table> | |
| 20 </div> | |
| 21 <p>Test passes if it doesn't assert.</p> | |
| 22 <script> | |
| 23 if (window.testRunner) | |
| 24 testRunner.dumpAsText(); | |
| 25 </script> | |
| OLD | NEW |