OLD | NEW |
1 <html> | 1 <html> |
2 <body> | 2 <body> |
3 <p>PASS: Invalid blend modes do not trigger a crash.</p> | 3 <p>PASS: Invalid blend modes do not trigger a crash.</p> |
4 <svg xmlns="http://www.w3.org/2000/svg"> | 4 <svg xmlns="http://www.w3.org/2000/svg"> |
5 <defs> | 5 <defs> |
6 <filter id="filter"> | 6 <filter id="filter"> |
7 <feBlend id="blend" /> | 7 <feBlend id="blend" /> |
8 </filter> | 8 </filter> |
9 </defs> | 9 </defs> |
10 <rect filter="url(#filter)" width="10" height="10"/> | 10 <rect filter="url(#filter)" width="10" height="10"/> |
11 <script> | 11 <script> |
12 if (window.layoutTestController) | 12 if (window.layoutTestController) |
13 layoutTestController.dumpAsText(); | 13 layoutTestController.dumpAsText(); |
14 document.getElementById('blend').mode.baseVal=-1; | 14 document.getElementById('blend').mode.baseVal=-1; |
15 </script> | 15 </script> |
16 </svg> | 16 </svg> |
17 </body> | 17 </body> |
18 </html> | 18 </html> |
OLD | NEW |