| <script> |
| if (window.testRunner) |
| testRunner.dumpAsText(); |
| </script> |
| <style> |
| .repeating-gradient-with-suffix-stops { |
| background: repeating-linear-gradient(to right, red 0%, green 0.0001%); |
| } |
| .repeating-gradient-with-prefix-stops { |
| background: repeating-linear-gradient(to right, red 99.9999%, green 100%); |
| } |
| .repeating-gradient-with-prefix-and-suffix-stops { |
| background: repeating-linear-gradient(to right, red 50%, green 50.0001%); |
| } |
| </style> |
| <div>This test passess if it doesn't crash.</div> |
| <div class="repeating-gradient-with-suffix-stops">Repeating Gradient With Many Stops</div> |
| <div class="repeating-gradient-with-prefix-stops">Repeating Gradient With Many Stops</div> |
| <div class="repeating-gradient-with-prefix-and-suffix-stops">Repeating Gradient With Many Stops</div> |