Fixes https://github.com/w3c/csswg-test/issues/1227 .
This patch was written with the script:
#!/bin/bash
cd "$(dirname "$0")/shapes1"
echo "circle 31
ellipse 31
inset 15" | while read BASE INCREMENT
do
echo shape-outside-$BASE-* | sed 's/ /\n/g;' | sed 's/\([0-9]\{3\}\)/ \1 /' | while read FILESTART OLDNUM FILEEND
do
NEWNUM=$(printf "%03d" $(($(echo $OLDNUM | sed 's/^0*//') + $INCREMENT)))
OLDFILE="$FILESTART$OLDNUM$FILEEND"
NEWFILE="$FILESTART$NEWNUM$FILEEND"
hg mv "$OLDFILE" "$NEWFILE"
sed -i -e "s/$OLDFILE/$NEWFILE/g" *
done
done