| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style type="text/css"> | 2 <style type="text/css"> |
| 3 .box { | 3 .box { |
| 4 height: 100px; | 4 height: 100px; |
| 5 width: 100px; | 5 width: 100px; |
| 6 background: no-repeat repeating-linear-gradient(red, blue, green 0); | 6 background: no-repeat repeating-linear-gradient(red, blue, green 0); |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 <script type="text/javascript" charset="utf-8"> | 9 <script type="text/javascript" charset="utf-8"> |
| 10 if (window.testRunner) { | 10 if (window.testRunner) { |
| 11 var dumpPixels = true; | 11 testRunner.dumpAsTextWithPixelResults(); |
| 12 testRunner.dumpAsText(dumpPixels); | |
| 13 } | 12 } |
| 14 </script> | 13 </script> |
| 15 <!-- This test should not hang. You should see a green square. --> | 14 <!-- This test should not hang. You should see a green square. --> |
| 16 <div class="box"></div> | 15 <div class="box"></div> |
| OLD | NEW |