commit-queue@webkit.org | d5054f1 | 2014-05-09 19:05:33 +0000 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <style> |
| 3 | div { |
| 4 | height:100px; width:100px; |
| 5 | } |
| 6 | |
| 7 | svg { overflow:visible } |
| 8 | |
| 9 | #clip1 {clip: rect(-10px,-10px,-10px,-10px)} |
| 10 | #clip2 {clip: auto} |
| 11 | </style> |
| 12 | <div><svg height="100" width="100" viewbox="0 0 100 100"> |
| 13 | <path d="M210 10 L90 10 L90 90" fill="blue"/> |
| 14 | </svg></div> |
| 15 | |
| 16 | <div><svg id="clip1" height="100" width="100" viewbox="0 0 100 100"> |
| 17 | <path d="M210 10 L90 10 L90 90" fill="blue"/> |
| 18 | </svg></div> |
| 19 | |
| 20 | <div><svg id="clip2" height="100" width="100" viewbox="0 0 100 100"> |
| 21 | <path d="M210 10 L90 10 L90 90" fill="blue"/> |
| 22 | </svg></div> |