| OLD | NEW |
| (Empty) | |
| 1 #!/bin/sh |
| 2 cd `dirname $0`/../LayoutTests |
| 3 |
| 4 cat >SlimmingPaintExpectations <<END |
| 5 # Slimming paint overriding expectations (to change, modify sp/gen-expectations) |
| 6 |
| 7 Bug(0) svg/W3C-SVG-1.1/masking-intro-01-f.svg [ NeedsRebaseline ] |
| 8 Bug(0) svg/clip-path/clipper-placement-issue.svg [ NeedsRebaseline ] |
| 9 |
| 10 # |
| 11 # Lines to avoid conflicts. |
| 12 # |
| 13 |
| 14 # The following are generated from LayoutTests/TestExpectations by sp/gen-expect
ations |
| 15 END |
| 16 |
| 17 grep "virtual/slimmingpaint/.*\..*" TestExpectations | grep -v Skip | |
| 18 sed 's"virtual/slimmingpaint/""' >> SlimmingPaintExpectations |
| OLD | NEW |