Rename (renumber) new mozilla-central-reftests shapes1 tests to avoid filename collisions with existing tests. Followup to bug 1311244, bug 1326406, and bug 1326407.

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

--HG--
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-001-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-032-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-001.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-032.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-002-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-033-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-002.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-033.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-003-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-034-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-003.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-034.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-004-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-035-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-004.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-035.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-005-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-036-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-005.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-036.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-006.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-037.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-007.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-038.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-008-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-039-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-008.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-039.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-009.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-040.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-010-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-041-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-010.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-041.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-011-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-042-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-011.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-042.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-012.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-043.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-013.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-044.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-014-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-045-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-014.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-045.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-015.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-046.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-016-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-047-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-016.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-047.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-017-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-048-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-017.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-048.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-018-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-049-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-018.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-049.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-019-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-050-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-019.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-050.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-020-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-051-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-020.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-051.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-021-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-052-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-021.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-052.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-022-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-053-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-022.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-053.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-023-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-054-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-023.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-054.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-024-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-055-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-024.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-055.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-001-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-032-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-001.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-032.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-002-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-033-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-002.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-033.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-003-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-034-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-003.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-034.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-004-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-035-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-004.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-035.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-005-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-036-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-005.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-036.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-006-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-037-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-006.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-037.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-007-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-038-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-007.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-038.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-008-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-039-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-008.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-039.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-009-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-040-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-009.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-040.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-010.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-041.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-011-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-042-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-011.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-042.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-012.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-043.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-013-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-044-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-013.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-044.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-014-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-045-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-014.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-045.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-015-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-046-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-015.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-046.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-016-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-047-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-016.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-047.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-017-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-048-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-017.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-048.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-018-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-049-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-018.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-049.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-019-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-050-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-019.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-050.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-020-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-051-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-020.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-051.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-001-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-016-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-001.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-016.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-002-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-017-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-002.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-017.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-003-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-018-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-003.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-018.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-004-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-019-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-004.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-019.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-005-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-020-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-005.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-020.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-006-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-021-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-006.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-021.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-007-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-022-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-007.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-022.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-008-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-023-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-008.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-023.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-009-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-024-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-009.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-024.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-010-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-025-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-010.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-025.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-011-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-026-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-011.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-026.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-012-ref.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-027-ref.html
rename : layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-012.html => layout/reftests/w3c-css/submitted/shapes1/shape-outside-inset-027.html
extra : amend_source : 0ee40b77c3d7bcbe51df481622d37b75e92402c0
This commit is contained in:
L. David Baron 2017-03-03 09:15:54 -08:00
parent 30bd5679fd
commit 1be12ca811
105 changed files with 112 additions and 112 deletions

View File

@ -37,63 +37,63 @@ fails == shape-outside-border-box-border-radius-004.html shape-outside-border-bo
== shape-outside-content-box-border-radius-002.html shape-outside-content-box-border-radius-002-ref.html
# Basic shape: circle()
== shape-outside-circle-001.html shape-outside-circle-001-ref.html
== shape-outside-circle-002.html shape-outside-circle-002-ref.html
== shape-outside-circle-003.html shape-outside-circle-003-ref.html
== shape-outside-circle-004.html shape-outside-circle-004-ref.html
== shape-outside-circle-005.html shape-outside-circle-005-ref.html
== shape-outside-circle-006.html shape-outside-circle-005-ref.html
== shape-outside-circle-007.html shape-outside-circle-005-ref.html
== shape-outside-circle-008.html shape-outside-circle-008-ref.html
== shape-outside-circle-009.html shape-outside-circle-008-ref.html
== shape-outside-circle-010.html shape-outside-circle-010-ref.html
== shape-outside-circle-011.html shape-outside-circle-011-ref.html
== shape-outside-circle-012.html shape-outside-circle-011-ref.html
== shape-outside-circle-013.html shape-outside-circle-011-ref.html
== shape-outside-circle-014.html shape-outside-circle-014-ref.html
== shape-outside-circle-015.html shape-outside-circle-014-ref.html
== shape-outside-circle-016.html shape-outside-circle-016-ref.html
== shape-outside-circle-017.html shape-outside-circle-017-ref.html
== shape-outside-circle-018.html shape-outside-circle-018-ref.html
== shape-outside-circle-019.html shape-outside-circle-019-ref.html
== shape-outside-circle-020.html shape-outside-circle-020-ref.html
== shape-outside-circle-021.html shape-outside-circle-021-ref.html
== shape-outside-circle-022.html shape-outside-circle-022-ref.html
== shape-outside-circle-023.html shape-outside-circle-023-ref.html
== shape-outside-circle-024.html shape-outside-circle-024-ref.html
== shape-outside-circle-032.html shape-outside-circle-032-ref.html
== shape-outside-circle-033.html shape-outside-circle-033-ref.html
== shape-outside-circle-034.html shape-outside-circle-034-ref.html
== shape-outside-circle-035.html shape-outside-circle-035-ref.html
== shape-outside-circle-036.html shape-outside-circle-036-ref.html
== shape-outside-circle-037.html shape-outside-circle-036-ref.html
== shape-outside-circle-038.html shape-outside-circle-036-ref.html
== shape-outside-circle-039.html shape-outside-circle-039-ref.html
== shape-outside-circle-040.html shape-outside-circle-039-ref.html
== shape-outside-circle-041.html shape-outside-circle-041-ref.html
== shape-outside-circle-042.html shape-outside-circle-042-ref.html
== shape-outside-circle-043.html shape-outside-circle-042-ref.html
== shape-outside-circle-044.html shape-outside-circle-042-ref.html
== shape-outside-circle-045.html shape-outside-circle-045-ref.html
== shape-outside-circle-046.html shape-outside-circle-045-ref.html
== shape-outside-circle-047.html shape-outside-circle-047-ref.html
== shape-outside-circle-048.html shape-outside-circle-048-ref.html
== shape-outside-circle-049.html shape-outside-circle-049-ref.html
== shape-outside-circle-050.html shape-outside-circle-050-ref.html
== shape-outside-circle-051.html shape-outside-circle-051-ref.html
== shape-outside-circle-052.html shape-outside-circle-052-ref.html
== shape-outside-circle-053.html shape-outside-circle-053-ref.html
== shape-outside-circle-054.html shape-outside-circle-054-ref.html
== shape-outside-circle-055.html shape-outside-circle-055-ref.html
# Basic shape: ellipse()
== shape-outside-ellipse-001.html shape-outside-ellipse-001-ref.html
== shape-outside-ellipse-002.html shape-outside-ellipse-002-ref.html
== shape-outside-ellipse-003.html shape-outside-ellipse-003-ref.html
== shape-outside-ellipse-004.html shape-outside-ellipse-004-ref.html
== shape-outside-ellipse-005.html shape-outside-ellipse-005-ref.html
== shape-outside-ellipse-006.html shape-outside-ellipse-006-ref.html
== shape-outside-ellipse-007.html shape-outside-ellipse-007-ref.html
== shape-outside-ellipse-008.html shape-outside-ellipse-008-ref.html
== shape-outside-ellipse-009.html shape-outside-ellipse-009-ref.html
== shape-outside-ellipse-010.html shape-outside-ellipse-009-ref.html
== shape-outside-ellipse-011.html shape-outside-ellipse-011-ref.html
== shape-outside-ellipse-012.html shape-outside-ellipse-011-ref.html
== shape-outside-ellipse-013.html shape-outside-ellipse-013-ref.html
== shape-outside-ellipse-014.html shape-outside-ellipse-014-ref.html
== shape-outside-ellipse-015.html shape-outside-ellipse-015-ref.html
== shape-outside-ellipse-016.html shape-outside-ellipse-016-ref.html
== shape-outside-ellipse-017.html shape-outside-ellipse-017-ref.html
== shape-outside-ellipse-018.html shape-outside-ellipse-018-ref.html
== shape-outside-ellipse-019.html shape-outside-ellipse-019-ref.html
== shape-outside-ellipse-020.html shape-outside-ellipse-020-ref.html
== shape-outside-ellipse-032.html shape-outside-ellipse-032-ref.html
== shape-outside-ellipse-033.html shape-outside-ellipse-033-ref.html
== shape-outside-ellipse-034.html shape-outside-ellipse-034-ref.html
== shape-outside-ellipse-035.html shape-outside-ellipse-035-ref.html
== shape-outside-ellipse-036.html shape-outside-ellipse-036-ref.html
== shape-outside-ellipse-037.html shape-outside-ellipse-037-ref.html
== shape-outside-ellipse-038.html shape-outside-ellipse-038-ref.html
== shape-outside-ellipse-039.html shape-outside-ellipse-039-ref.html
== shape-outside-ellipse-040.html shape-outside-ellipse-040-ref.html
== shape-outside-ellipse-041.html shape-outside-ellipse-040-ref.html
== shape-outside-ellipse-042.html shape-outside-ellipse-042-ref.html
== shape-outside-ellipse-043.html shape-outside-ellipse-042-ref.html
== shape-outside-ellipse-044.html shape-outside-ellipse-044-ref.html
== shape-outside-ellipse-045.html shape-outside-ellipse-045-ref.html
== shape-outside-ellipse-046.html shape-outside-ellipse-046-ref.html
== shape-outside-ellipse-047.html shape-outside-ellipse-047-ref.html
== shape-outside-ellipse-048.html shape-outside-ellipse-048-ref.html
== shape-outside-ellipse-049.html shape-outside-ellipse-049-ref.html
== shape-outside-ellipse-050.html shape-outside-ellipse-050-ref.html
== shape-outside-ellipse-051.html shape-outside-ellipse-051-ref.html
# Basic shape: inset()
== shape-outside-inset-001.html shape-outside-inset-001-ref.html
== shape-outside-inset-002.html shape-outside-inset-002-ref.html
== shape-outside-inset-003.html shape-outside-inset-003-ref.html
== shape-outside-inset-004.html shape-outside-inset-004-ref.html
== shape-outside-inset-005.html shape-outside-inset-005-ref.html
== shape-outside-inset-006.html shape-outside-inset-006-ref.html
== shape-outside-inset-007.html shape-outside-inset-007-ref.html
== shape-outside-inset-008.html shape-outside-inset-008-ref.html
== shape-outside-inset-009.html shape-outside-inset-009-ref.html
== shape-outside-inset-010.html shape-outside-inset-010-ref.html
== shape-outside-inset-011.html shape-outside-inset-011-ref.html
== shape-outside-inset-012.html shape-outside-inset-012-ref.html
== shape-outside-inset-016.html shape-outside-inset-016-ref.html
== shape-outside-inset-017.html shape-outside-inset-017-ref.html
== shape-outside-inset-018.html shape-outside-inset-018-ref.html
== shape-outside-inset-019.html shape-outside-inset-019-ref.html
== shape-outside-inset-020.html shape-outside-inset-020-ref.html
== shape-outside-inset-021.html shape-outside-inset-021-ref.html
== shape-outside-inset-022.html shape-outside-inset-022-ref.html
== shape-outside-inset-023.html shape-outside-inset-023-ref.html
== shape-outside-inset-024.html shape-outside-inset-024-ref.html
== shape-outside-inset-025.html shape-outside-inset-025-ref.html
== shape-outside-inset-026.html shape-outside-inset-026-ref.html
== shape-outside-inset-027.html shape-outside-inset-027-ref.html

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-001-ref.html">
<link rel="match" href="shape-outside-circle-032-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle(50% at left top) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-002-ref.html">
<link rel="match" href="shape-outside-circle-033-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle(50% at right bottom) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-003-ref.html">
<link rel="match" href="shape-outside-circle-034-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape circle(50% at right top) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-004-ref.html">
<link rel="match" href="shape-outside-circle-035-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape circle(50% at left bottom) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-005-ref.html">
<link rel="match" href="shape-outside-circle-036-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle() value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-005-ref.html">
<link rel="match" href="shape-outside-circle-036-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle(closest-side at center) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-005-ref.html">
<link rel="match" href="shape-outside-circle-036-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle(farthest-side at center) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-008-ref.html">
<link rel="match" href="shape-outside-circle-039-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the left float shape defines an empty float area by the basic shape circle(0%) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-008-ref.html">
<link rel="match" href="shape-outside-circle-039-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the left float shape defines an empty float area by the basic shape circle(closest-side at left center) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-010-ref.html">
<link rel="match" href="shape-outside-circle-041-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle(100%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-011-ref.html">
<link rel="match" href="shape-outside-circle-042-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape circle() value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-011-ref.html">
<link rel="match" href="shape-outside-circle-042-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape circle(closest-side at center) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-011-ref.html">
<link rel="match" href="shape-outside-circle-042-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape circle(farthest-side at center) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-014-ref.html">
<link rel="match" href="shape-outside-circle-045-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the right float shape defines an empty float area by the basic shape circle(0%) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-014-ref.html">
<link rel="match" href="shape-outside-circle-045-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the right float shape defines an empty float area by the basic shape circle(closest-side at right center) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-016-ref.html">
<link rel="match" href="shape-outside-circle-047-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape circle(100%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-017-ref.html">
<link rel="match" href="shape-outside-circle-048-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by circle(50% at left 40px top 40px) value under vertical-rl writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-018-ref.html">
<link rel="match" href="shape-outside-circle-049-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by circle(50% at left 40px bottom 40px) value under vertical-rl writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-019-ref.html">
<link rel="match" href="shape-outside-circle-050-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by circle(50% at right 40px top 40px) value under vertical-lr writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-020-ref.html">
<link rel="match" href="shape-outside-circle-051-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by circle(50% at right 40px bottom 40px) value under vertical-lr writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-021-ref.html">
<link rel="match" href="shape-outside-circle-052-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by circle(50% at right 40px bottom 40px) value under sideways-lr writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-022-ref.html">
<link rel="match" href="shape-outside-circle-053-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by circle(50% at right 40px top 40px) value under sideways-lr writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-023-ref.html">
<link rel="match" href="shape-outside-circle-054-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by circle(50% at left 40px bottom 40px) value under horizontal-tb writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-circle-024-ref.html">
<link rel="match" href="shape-outside-circle-055-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by circle(50% at right 40px bottom 40px) value under horizontal-tb writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-001-ref.html">
<link rel="match" href="shape-outside-ellipse-032-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(40px 60px at left top) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-002-ref.html">
<link rel="match" href="shape-outside-ellipse-033-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(40px 60px at right bottom) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-003-ref.html">
<link rel="match" href="shape-outside-ellipse-034-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(40px 60px at right top)">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-004-ref.html">
<link rel="match" href="shape-outside-ellipse-035-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(40px 60px at left bottom) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-005-ref.html">
<link rel="match" href="shape-outside-ellipse-036-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse() value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-006-ref.html">
<link rel="match" href="shape-outside-ellipse-037-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(closest-side farthest-side at left 40px top 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-007-ref.html">
<link rel="match" href="shape-outside-ellipse-038-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse() value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-008-ref.html">
<link rel="match" href="shape-outside-ellipse-039-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(closest-side farthest-side at right 40px top 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-009-ref.html">
<link rel="match" href="shape-outside-ellipse-040-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the left float shape defines an empty float area by the basic shape ellipse(0% 0%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-009-ref.html">
<link rel="match" href="shape-outside-ellipse-040-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the left float shape defines an empty float area by the basic shape ellipse(0% 0closest-side closest-side at top left) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-011-ref.html">
<link rel="match" href="shape-outside-ellipse-042-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the right float shape defines an empty float area by the basic shape ellipse(0% 0%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-011-ref.html">
<link rel="match" href="shape-outside-ellipse-042-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the right float shape defines an empty float area by the basic shape ellipse(0% 0closest-side closest-side at top right) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-013-ref.html">
<link rel="match" href="shape-outside-ellipse-044-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(100% 100%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-014-ref.html">
<link rel="match" href="shape-outside-ellipse-045-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(100% 100%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-015-ref.html">
<link rel="match" href="shape-outside-ellipse-046-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(closest-side farthest-side at top 40px right 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-016-ref.html">
<link rel="match" href="shape-outside-ellipse-047-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(closest-side farthest-side at top 40px right 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-017-ref.html">
<link rel="match" href="shape-outside-ellipse-048-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(closest-side farthest-side at left 40px top 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-018-ref.html">
<link rel="match" href="shape-outside-ellipse-049-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(closest-side farthest-side at left 40px top 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-019-ref.html">
<link rel="match" href="shape-outside-ellipse-050-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape ellipse(closest-side farthest-side at left 40px top 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-ellipse-020-ref.html">
<link rel="match" href="shape-outside-ellipse-051-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the basic shape ellipse(closest-side farthest-side at left 40px top 60px) border-box">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-001-ref.html">
<link rel="match" href="shape-outside-inset-016-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the inset(20px) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-002-ref.html">
<link rel="match" href="shape-outside-inset-017-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the inset(20px) border-box value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-003-ref.html">
<link rel="match" href="shape-outside-inset-018-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the left float shape defines an empty float area by the basic shape inset(50%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-004-ref.html">
<link rel="match" href="shape-outside-inset-019-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the right float shape defines an empty float area by the basic shape inset(50%) value.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-005-ref.html">
<link rel="match" href="shape-outside-inset-020-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the inset(10px round 0 40px/ 0 60px) border-box value under horizontal-tb writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-006-ref.html">
<link rel="match" href="shape-outside-inset-021-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the inset(10px round 0 40px/ 0 60px) border-box value under horizontal-tb writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-007-ref.html">
<link rel="match" href="shape-outside-inset-022-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the inset(10px round 60px 0/ 40px 0) border-box value under vertical-rl writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-008-ref.html">
<link rel="match" href="shape-outside-inset-023-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the right float shape defined by the inset(10px round 60px 0/ 40px 0) border-box value under vertical-rl writing-mode.">
<style>

View File

@ -8,7 +8,7 @@
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes">
<link rel="match" href="shape-outside-inset-009-ref.html">
<link rel="match" href="shape-outside-inset-024-ref.html">
<meta name="flags" content="">
<meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the inset(10px round 60px 0/ 40px 0) border-box value under vertical-lr writing-mode.">
<style>

Some files were not shown because too many files have changed in this diff Show More