From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../tests/css/css-round-display/META.yml | 3 ++ .../css-round-display/polar-anchor-center-001.html | 30 +++++++++++++++++++ .../css-round-display/polar-anchor-center-002.html | 31 +++++++++++++++++++ .../css-round-display/polar-anchor-center-003.html | 32 ++++++++++++++++++++ .../polar-anchor-left-top-001.html | 30 +++++++++++++++++++ .../css-round-display/polar-anchor-top-001.html | 32 ++++++++++++++++++++ .../polar-origin-and-anchor-001.html | 35 ++++++++++++++++++++++ .../polar-origin-and-anchor-002.html | 35 ++++++++++++++++++++++ .../polar-origin-and-anchor-003.html | 35 ++++++++++++++++++++++ .../polar-origin-and-anchor-004.html | 35 ++++++++++++++++++++++ .../polar-origin-and-anchor-005.html | 35 ++++++++++++++++++++++ .../css-round-display/polar-origin-auto-001.html | 30 +++++++++++++++++++ .../css-round-display/polar-origin-auto-002.html | 32 ++++++++++++++++++++ .../css-round-display/polar-origin-center-001.html | 30 +++++++++++++++++++ .../css-round-display/polar-origin-left-001.html | 32 ++++++++++++++++++++ .../polar-origin-left-bottom-001.html | 32 ++++++++++++++++++++ 16 files changed, 489 insertions(+) create mode 100644 testing/web-platform/tests/css/css-round-display/META.yml create mode 100644 testing/web-platform/tests/css/css-round-display/polar-anchor-center-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-anchor-center-002.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-anchor-center-003.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-anchor-left-top-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-anchor-top-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-002.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-003.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-004.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-005.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-auto-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-auto-002.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-center-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-left-001.html create mode 100644 testing/web-platform/tests/css/css-round-display/polar-origin-left-bottom-001.html (limited to 'testing/web-platform/tests/css/css-round-display') diff --git a/testing/web-platform/tests/css/css-round-display/META.yml b/testing/web-platform/tests/css/css-round-display/META.yml new file mode 100644 index 0000000000..bfc6b1d65c --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/META.yml @@ -0,0 +1,3 @@ +spec: https://drafts.csswg.org/css-round-display/ +suggested_reviewers: + - jihyerish diff --git a/testing/web-platform/tests/css/css-round-display/polar-anchor-center-001.html b/testing/web-platform/tests/css/css-round-display/polar-anchor-center-001.html new file mode 100644 index 0000000000..2af9546a0c --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-anchor-center-001.html @@ -0,0 +1,30 @@ + + + + CSS Test: Anchor of the element + + + + + + +

Test passes if the center of a red box is positioned at the upper left corner of the containing block.
+ The element is positioned using Cartesian coordinates and the anchor point is at its center.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-anchor-center-002.html b/testing/web-platform/tests/css/css-round-display/polar-anchor-center-002.html new file mode 100644 index 0000000000..9648a7b3ac --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-anchor-center-002.html @@ -0,0 +1,31 @@ + + + + CSS Test: Anchor of the element + + + + + + +

Test passes if the center of a red box is positioned at 50px far from the left edge of the containing block.
+ The element is positioned using Cartesian coordinates and the anchor point is at its center.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-anchor-center-003.html b/testing/web-platform/tests/css/css-round-display/polar-anchor-center-003.html new file mode 100644 index 0000000000..d8c71e3f26 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-anchor-center-003.html @@ -0,0 +1,32 @@ + + + + CSS Test: Anchor of the element + + + + + + +

Test passes if the center of a red box is positioned at the center of the containing block.
+ The element is positioned using polar coordinates and the anchor point is at its center.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-anchor-left-top-001.html b/testing/web-platform/tests/css/css-round-display/polar-anchor-left-top-001.html new file mode 100644 index 0000000000..1e57f041a9 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-anchor-left-top-001.html @@ -0,0 +1,30 @@ + + + + CSS Test: Anchor of the element + + + + + + +

Test passes if the upper left corner of a red box is positioned at the upper left corner of the containing block.
+ The element is positioned using Cartesian coordinates and the anchor point is at its upper left corner.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-anchor-top-001.html b/testing/web-platform/tests/css/css-round-display/polar-anchor-top-001.html new file mode 100644 index 0000000000..8487070b2c --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-anchor-top-001.html @@ -0,0 +1,32 @@ + + + + CSS Test: Anchor of the element + + + + + + +

Test passes if the center point of the red box's top edge is positioned at the center of the containing block.
+ The element is positioned using polar coordinates and the anchor point is at the center of its top edge.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-001.html b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-001.html new file mode 100644 index 0000000000..811a759e76 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-001.html @@ -0,0 +1,35 @@ + + + + CSS Test: Position an element with 'polar-origin' and 'polar-anchor' + + + + + + +

Test passes if the center of the red box is positioned at the center of the containing block.
+ The element is positioned using polar coordinates.
+ The origin of coordinates is the center point of the containing block.
+ And the anchor point of the element is its center point.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-002.html b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-002.html new file mode 100644 index 0000000000..cb02361b35 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-002.html @@ -0,0 +1,35 @@ + + + + CSS Test: Position an element with 'polar-origin' and 'polar-anchor' + + + + + + +

Test passes if the center point of the red box's left edge is positioned at the center of the containing block.
+ The element is positioned using polar coordinates.
+ The origin of coordinates is the center point of the containing block.
+ And the anchor point of the element is the center point of its left edge.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-003.html b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-003.html new file mode 100644 index 0000000000..4ccbdd63d6 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-003.html @@ -0,0 +1,35 @@ + + + + CSS Test: Position an element with 'polar-origin' and 'polar-anchor' + + + + + + +

Test passes if the center point of the red box's left edge is positioned at the center point of the containing block's bottom edge.
+ The element is positioned using polar coordinates.
+ The origin of coordinates is the center point of the containing block's bottom edge.
+ And the anchor point of the element is the center point of its left edge.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-004.html b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-004.html new file mode 100644 index 0000000000..89bc44989c --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-004.html @@ -0,0 +1,35 @@ + + + + CSS Test: Position an element with 'polar-origin' and 'polar-anchor' + + + + + + +

Test passes if the upper left corner of the red box is positioned at the center point of the containing block's bottom edge.
+ The element is positioned using polar coordinates.
+ The origin of coordinates is the center point of the containing block's bottom edge.
+ And the anchor point of the element is at its upper left corner.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-005.html b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-005.html new file mode 100644 index 0000000000..a219f7c57e --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-and-anchor-005.html @@ -0,0 +1,35 @@ + + + + CSS Test: Position an element with 'polar-origin' and 'polar-anchor' + + + + + + +

Test passes if the upper left corner of the red box is positioned at the lower right corner of the containing block's bottom edge.
+ The element is positioned using polar coordinates.
+ The origin of coordinates is at the lower right corner of the containing block.
+ And the anchor point of the element is at its upper left corner.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-auto-001.html b/testing/web-platform/tests/css/css-round-display/polar-origin-auto-001.html new file mode 100644 index 0000000000..9227948f3b --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-auto-001.html @@ -0,0 +1,30 @@ + + + + CSS Test: Origin of Coordinates + + + + + + +

Test passes if the upper left corner of a red box is positioned at the upper left corner of the containing block.
+ The element is positioned using Cartesian coordinates and the origin of coordinates is the upper left corner of the containing block.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-auto-002.html b/testing/web-platform/tests/css/css-round-display/polar-origin-auto-002.html new file mode 100644 index 0000000000..6d321253bd --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-auto-002.html @@ -0,0 +1,32 @@ + + + + CSS Test: Origin of Coordinates + + + + + + +

Test passes if the center of a red box is positioned at the center of the containing block.
+ The element is positioned using polar coordinates and the origin of coordinates is the center of the containing block.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-center-001.html b/testing/web-platform/tests/css/css-round-display/polar-origin-center-001.html new file mode 100644 index 0000000000..0be9a8eca0 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-center-001.html @@ -0,0 +1,30 @@ + + + + CSS Test: Origin of Coordinates + + + + + + +

Test passes if the upper left corner of a red box is positioned at the center of the containing block.
+ The element is positioned using Cartesian coordinates and the origin of coordinates is the center of the containing block.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-left-001.html b/testing/web-platform/tests/css/css-round-display/polar-origin-left-001.html new file mode 100644 index 0000000000..59ad21e310 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-left-001.html @@ -0,0 +1,32 @@ + + + + CSS Test: Origin of Coordinates + + + + + + +

Test passes if the center of a red box is positioned at the center of the containing block's left edge.
+ The element is positioned using polar coordinates and the origin of coordinates is the center of the containing block's left edge.

+
+
+
+ + diff --git a/testing/web-platform/tests/css/css-round-display/polar-origin-left-bottom-001.html b/testing/web-platform/tests/css/css-round-display/polar-origin-left-bottom-001.html new file mode 100644 index 0000000000..7b6770c4a6 --- /dev/null +++ b/testing/web-platform/tests/css/css-round-display/polar-origin-left-bottom-001.html @@ -0,0 +1,32 @@ + + + + CSS Test: Origin of Coordinates + + + + + + +

Test passes if the center of a red box is positioned at the left-side bottom corner of the containing block.
+ The element is positioned using polar coordinates and the origin of coordinates is the left-side bottom corner of the containing block's left edge.

+
+
+
+ + -- cgit v1.2.3