From f7e5d20590a31f1e39bc2435fa1e8abc73e20f47 Mon Sep 17 00:00:00 2001 From: Sebastian Zartner Date: Sun, 11 Feb 2024 22:28:42 +0100 Subject: [PATCH] Added parsing tests for properties in CSS Borders 4 --- .../border-block-end-radius-computed.html | 20 ++++++++ .../border-block-end-radius-invalid.html | 23 +++++++++ .../border-block-end-radius-valid.html | 21 ++++++++ .../border-block-start-radius-computed.html | 20 ++++++++ .../border-block-start-radius-invalid.html | 23 +++++++++ .../border-block-start-radius-valid.html | 21 ++++++++ .../border-bottom-radius-computed.html | 20 ++++++++ .../parsing/border-bottom-radius-invalid.html | 23 +++++++++ .../parsing/border-bottom-radius-valid.html | 21 ++++++++ .../parsing/border-clip-computed.html | 21 ++++++++ .../parsing/border-clip-invalid.html | 17 +++++++ .../parsing/border-clip-valid.html | 20 ++++++++ .../border-inline-end-radius-computed.html | 20 ++++++++ .../border-inline-end-radius-invalid.html | 23 +++++++++ .../border-inline-end-radius-valid.html | 21 ++++++++ .../border-inline-start-radius-computed.html | 20 ++++++++ .../border-inline-start-radius-invalid.html | 23 +++++++++ .../border-inline-start-radius-valid.html | 21 ++++++++ .../parsing/border-left-radius-computed.html | 20 ++++++++ .../parsing/border-left-radius-invalid.html | 23 +++++++++ .../parsing/border-left-radius-valid.html | 21 ++++++++ .../parsing/border-right-radius-computed.html | 20 ++++++++ .../parsing/border-right-radius-invalid.html | 23 +++++++++ .../parsing/border-right-radius-valid.html | 21 ++++++++ .../parsing/border-top-radius-computed.html | 20 ++++++++ .../parsing/border-top-radius-invalid.html | 23 +++++++++ .../parsing/border-top-radius-valid.html | 21 ++++++++ .../parsing/box-shadow-blur-computed.html | 18 +++++++ .../parsing/box-shadow-blur-invalid.html | 18 +++++++ .../parsing/box-shadow-blur-valid.html | 17 +++++++ .../parsing/box-shadow-color-computed.html | 31 ++++++++++++ .../parsing/box-shadow-color-invalid.html | 22 ++++++++ .../parsing/box-shadow-color-valid.html | 29 +++++++++++ .../parsing/box-shadow-offset-computed.html | 19 +++++++ .../parsing/box-shadow-offset-invalid.html | 16 ++++++ .../parsing/box-shadow-offset-valid.html | 19 +++++++ .../parsing/box-shadow-position-computed.html | 17 +++++++ .../parsing/box-shadow-position-invalid.html | 17 +++++++ .../parsing/box-shadow-position-valid.html | 15 ++++++ .../parsing/box-shadow-spread-computed.html | 19 +++++++ .../parsing/box-shadow-spread-invalid.html | 17 +++++++ .../parsing/box-shadow-spread-valid.html | 17 +++++++ .../parsing/corner-shape-computed.html | 19 +++++++ .../parsing/corner-shape-invalid.html | 18 +++++++ .../parsing/corner-shape-valid.html | 18 +++++++ .../parsing/corners-computed.html | 50 +++++++++++++++++++ .../parsing/corners-invalid.html | 25 ++++++++++ css/css-borders-4/parsing/corners-valid.html | 48 ++++++++++++++++++ 48 files changed, 1039 insertions(+) create mode 100644 css/css-borders-4/parsing/border-block-end-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-block-end-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-block-end-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-block-start-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-block-start-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-block-start-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-bottom-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-bottom-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-bottom-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-clip-computed.html create mode 100644 css/css-borders-4/parsing/border-clip-invalid.html create mode 100644 css/css-borders-4/parsing/border-clip-valid.html create mode 100644 css/css-borders-4/parsing/border-inline-end-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-inline-end-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-inline-end-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-inline-start-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-inline-start-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-inline-start-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-left-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-left-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-left-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-right-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-right-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-right-radius-valid.html create mode 100644 css/css-borders-4/parsing/border-top-radius-computed.html create mode 100644 css/css-borders-4/parsing/border-top-radius-invalid.html create mode 100644 css/css-borders-4/parsing/border-top-radius-valid.html create mode 100644 css/css-borders-4/parsing/box-shadow-blur-computed.html create mode 100644 css/css-borders-4/parsing/box-shadow-blur-invalid.html create mode 100644 css/css-borders-4/parsing/box-shadow-blur-valid.html create mode 100644 css/css-borders-4/parsing/box-shadow-color-computed.html create mode 100644 css/css-borders-4/parsing/box-shadow-color-invalid.html create mode 100644 css/css-borders-4/parsing/box-shadow-color-valid.html create mode 100644 css/css-borders-4/parsing/box-shadow-offset-computed.html create mode 100644 css/css-borders-4/parsing/box-shadow-offset-invalid.html create mode 100644 css/css-borders-4/parsing/box-shadow-offset-valid.html create mode 100644 css/css-borders-4/parsing/box-shadow-position-computed.html create mode 100644 css/css-borders-4/parsing/box-shadow-position-invalid.html create mode 100644 css/css-borders-4/parsing/box-shadow-position-valid.html create mode 100644 css/css-borders-4/parsing/box-shadow-spread-computed.html create mode 100644 css/css-borders-4/parsing/box-shadow-spread-invalid.html create mode 100644 css/css-borders-4/parsing/box-shadow-spread-valid.html create mode 100644 css/css-borders-4/parsing/corner-shape-computed.html create mode 100644 css/css-borders-4/parsing/corner-shape-invalid.html create mode 100644 css/css-borders-4/parsing/corner-shape-valid.html create mode 100644 css/css-borders-4/parsing/corners-computed.html create mode 100644 css/css-borders-4/parsing/corners-invalid.html create mode 100644 css/css-borders-4/parsing/corners-valid.html diff --git a/css/css-borders-4/parsing/border-block-end-radius-computed.html b/css/css-borders-4/parsing/border-block-end-radius-computed.html new file mode 100644 index 00000000000000..fd096fa17c7de3 --- /dev/null +++ b/css/css-borders-4/parsing/border-block-end-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-block-end-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-block-end-radius-invalid.html b/css/css-borders-4/parsing/border-block-end-radius-invalid.html new file mode 100644 index 00000000000000..a9554bd9249858 --- /dev/null +++ b/css/css-borders-4/parsing/border-block-end-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-block-end-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-block-end-radius-valid.html b/css/css-borders-4/parsing/border-block-end-radius-valid.html new file mode 100644 index 00000000000000..2989b349a1ad8f --- /dev/null +++ b/css/css-borders-4/parsing/border-block-end-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-block-end-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-block-start-radius-computed.html b/css/css-borders-4/parsing/border-block-start-radius-computed.html new file mode 100644 index 00000000000000..292ae1b6dc278d --- /dev/null +++ b/css/css-borders-4/parsing/border-block-start-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-block-start-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-block-start-radius-invalid.html b/css/css-borders-4/parsing/border-block-start-radius-invalid.html new file mode 100644 index 00000000000000..0a9a8a9bb77704 --- /dev/null +++ b/css/css-borders-4/parsing/border-block-start-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-block-start-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-block-start-radius-valid.html b/css/css-borders-4/parsing/border-block-start-radius-valid.html new file mode 100644 index 00000000000000..8c9f0e0bd11b35 --- /dev/null +++ b/css/css-borders-4/parsing/border-block-start-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-block-start-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-bottom-radius-computed.html b/css/css-borders-4/parsing/border-bottom-radius-computed.html new file mode 100644 index 00000000000000..a83286a9100807 --- /dev/null +++ b/css/css-borders-4/parsing/border-bottom-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-bottom-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-bottom-radius-invalid.html b/css/css-borders-4/parsing/border-bottom-radius-invalid.html new file mode 100644 index 00000000000000..bbf7555cdcfe4a --- /dev/null +++ b/css/css-borders-4/parsing/border-bottom-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-bottom-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-bottom-radius-valid.html b/css/css-borders-4/parsing/border-bottom-radius-valid.html new file mode 100644 index 00000000000000..fe3502beff5ffa --- /dev/null +++ b/css/css-borders-4/parsing/border-bottom-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-bottom-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-clip-computed.html b/css/css-borders-4/parsing/border-clip-computed.html new file mode 100644 index 00000000000000..37f20490bd6c40 --- /dev/null +++ b/css/css-borders-4/parsing/border-clip-computed.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-clip' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-clip-invalid.html b/css/css-borders-4/parsing/border-clip-invalid.html new file mode 100644 index 00000000000000..8f6dff3f080c57 --- /dev/null +++ b/css/css-borders-4/parsing/border-clip-invalid.html @@ -0,0 +1,17 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-clip' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-clip-valid.html b/css/css-borders-4/parsing/border-clip-valid.html new file mode 100644 index 00000000000000..819d800b42b365 --- /dev/null +++ b/css/css-borders-4/parsing/border-clip-valid.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-clip' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-inline-end-radius-computed.html b/css/css-borders-4/parsing/border-inline-end-radius-computed.html new file mode 100644 index 00000000000000..58f78efa6d2eb1 --- /dev/null +++ b/css/css-borders-4/parsing/border-inline-end-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-inline-end-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-inline-end-radius-invalid.html b/css/css-borders-4/parsing/border-inline-end-radius-invalid.html new file mode 100644 index 00000000000000..3ee5ccde33c929 --- /dev/null +++ b/css/css-borders-4/parsing/border-inline-end-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-radius-inline-end' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-inline-end-radius-valid.html b/css/css-borders-4/parsing/border-inline-end-radius-valid.html new file mode 100644 index 00000000000000..72c8ad8c281fa9 --- /dev/null +++ b/css/css-borders-4/parsing/border-inline-end-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-inline-end-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-inline-start-radius-computed.html b/css/css-borders-4/parsing/border-inline-start-radius-computed.html new file mode 100644 index 00000000000000..f08c0b0bfd7b23 --- /dev/null +++ b/css/css-borders-4/parsing/border-inline-start-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-inline-start-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-inline-start-radius-invalid.html b/css/css-borders-4/parsing/border-inline-start-radius-invalid.html new file mode 100644 index 00000000000000..eaf404cf025c80 --- /dev/null +++ b/css/css-borders-4/parsing/border-inline-start-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-inline-start-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-inline-start-radius-valid.html b/css/css-borders-4/parsing/border-inline-start-radius-valid.html new file mode 100644 index 00000000000000..1100664247e8b1 --- /dev/null +++ b/css/css-borders-4/parsing/border-inline-start-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-inline-start-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-left-radius-computed.html b/css/css-borders-4/parsing/border-left-radius-computed.html new file mode 100644 index 00000000000000..2db20255758f4a --- /dev/null +++ b/css/css-borders-4/parsing/border-left-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-left-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-left-radius-invalid.html b/css/css-borders-4/parsing/border-left-radius-invalid.html new file mode 100644 index 00000000000000..43002f7900203f --- /dev/null +++ b/css/css-borders-4/parsing/border-left-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-left-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-left-radius-valid.html b/css/css-borders-4/parsing/border-left-radius-valid.html new file mode 100644 index 00000000000000..401eff5729e219 --- /dev/null +++ b/css/css-borders-4/parsing/border-left-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-left-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-right-radius-computed.html b/css/css-borders-4/parsing/border-right-radius-computed.html new file mode 100644 index 00000000000000..b058938afc4416 --- /dev/null +++ b/css/css-borders-4/parsing/border-right-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-right-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-right-radius-invalid.html b/css/css-borders-4/parsing/border-right-radius-invalid.html new file mode 100644 index 00000000000000..f89f098376ee45 --- /dev/null +++ b/css/css-borders-4/parsing/border-right-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-right-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-right-radius-valid.html b/css/css-borders-4/parsing/border-right-radius-valid.html new file mode 100644 index 00000000000000..dc2f5987176159 --- /dev/null +++ b/css/css-borders-4/parsing/border-right-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-right-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-top-radius-computed.html b/css/css-borders-4/parsing/border-top-radius-computed.html new file mode 100644 index 00000000000000..e0dcc8ae4eab21 --- /dev/null +++ b/css/css-borders-4/parsing/border-top-radius-computed.html @@ -0,0 +1,20 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'border-top-radius' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/border-top-radius-invalid.html b/css/css-borders-4/parsing/border-top-radius-invalid.html new file mode 100644 index 00000000000000..67b0fc8087eeb0 --- /dev/null +++ b/css/css-borders-4/parsing/border-top-radius-invalid.html @@ -0,0 +1,23 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-top-radius' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/border-top-radius-valid.html b/css/css-borders-4/parsing/border-top-radius-valid.html new file mode 100644 index 00000000000000..8dbb9a4bb9606c --- /dev/null +++ b/css/css-borders-4/parsing/border-top-radius-valid.html @@ -0,0 +1,21 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'border-top-radius' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-blur-computed.html b/css/css-borders-4/parsing/box-shadow-blur-computed.html new file mode 100644 index 00000000000000..1c61f9a8e52835 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-blur-computed.html @@ -0,0 +1,18 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'box-shadow-blur' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/box-shadow-blur-invalid.html b/css/css-borders-4/parsing/box-shadow-blur-invalid.html new file mode 100644 index 00000000000000..20b2a50446007a --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-blur-invalid.html @@ -0,0 +1,18 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-blur' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-blur-valid.html b/css/css-borders-4/parsing/box-shadow-blur-valid.html new file mode 100644 index 00000000000000..1d0be1edf12c67 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-blur-valid.html @@ -0,0 +1,17 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-blur' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-color-computed.html b/css/css-borders-4/parsing/box-shadow-color-computed.html new file mode 100644 index 00000000000000..c78687bef0558b --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-color-computed.html @@ -0,0 +1,31 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'box-shadow-color' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/box-shadow-color-invalid.html b/css/css-borders-4/parsing/box-shadow-color-invalid.html new file mode 100644 index 00000000000000..7d92386de21f88 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-color-invalid.html @@ -0,0 +1,22 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-color' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-color-valid.html b/css/css-borders-4/parsing/box-shadow-color-valid.html new file mode 100644 index 00000000000000..c278a7d1cc8caf --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-color-valid.html @@ -0,0 +1,29 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-color' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-offset-computed.html b/css/css-borders-4/parsing/box-shadow-offset-computed.html new file mode 100644 index 00000000000000..854164c7aed81b --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-offset-computed.html @@ -0,0 +1,19 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'box-shadow-offset' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/box-shadow-offset-invalid.html b/css/css-borders-4/parsing/box-shadow-offset-invalid.html new file mode 100644 index 00000000000000..dd1c0f33749c8c --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-offset-invalid.html @@ -0,0 +1,16 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-offset' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-offset-valid.html b/css/css-borders-4/parsing/box-shadow-offset-valid.html new file mode 100644 index 00000000000000..f92fa2396fc0f8 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-offset-valid.html @@ -0,0 +1,19 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-offset' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-position-computed.html b/css/css-borders-4/parsing/box-shadow-position-computed.html new file mode 100644 index 00000000000000..44a0cf90a4f027 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-position-computed.html @@ -0,0 +1,17 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'box-shadow-position' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/box-shadow-position-invalid.html b/css/css-borders-4/parsing/box-shadow-position-invalid.html new file mode 100644 index 00000000000000..9738dd610767a6 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-position-invalid.html @@ -0,0 +1,17 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-position' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-position-valid.html b/css/css-borders-4/parsing/box-shadow-position-valid.html new file mode 100644 index 00000000000000..b10ff9b05430fb --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-position-valid.html @@ -0,0 +1,15 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-position' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-spread-computed.html b/css/css-borders-4/parsing/box-shadow-spread-computed.html new file mode 100644 index 00000000000000..f453df6e537262 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-spread-computed.html @@ -0,0 +1,19 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'box-shadow-spread' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/box-shadow-spread-invalid.html b/css/css-borders-4/parsing/box-shadow-spread-invalid.html new file mode 100644 index 00000000000000..205fd924b97740 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-spread-invalid.html @@ -0,0 +1,17 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-spread' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/box-shadow-spread-valid.html b/css/css-borders-4/parsing/box-shadow-spread-valid.html new file mode 100644 index 00000000000000..c040cabc6ff2e7 --- /dev/null +++ b/css/css-borders-4/parsing/box-shadow-spread-valid.html @@ -0,0 +1,17 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'box-shadow-spread' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/corner-shape-computed.html b/css/css-borders-4/parsing/corner-shape-computed.html new file mode 100644 index 00000000000000..c238ddfb96971e --- /dev/null +++ b/css/css-borders-4/parsing/corner-shape-computed.html @@ -0,0 +1,19 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'corner-shape' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/corner-shape-invalid.html b/css/css-borders-4/parsing/corner-shape-invalid.html new file mode 100644 index 00000000000000..51f8e05700a04a --- /dev/null +++ b/css/css-borders-4/parsing/corner-shape-invalid.html @@ -0,0 +1,18 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'corner-shape' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/corner-shape-valid.html b/css/css-borders-4/parsing/corner-shape-valid.html new file mode 100644 index 00000000000000..62ee2630aced6f --- /dev/null +++ b/css/css-borders-4/parsing/corner-shape-valid.html @@ -0,0 +1,18 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'corner-shape' with valid values + + + + + + + + diff --git a/css/css-borders-4/parsing/corners-computed.html b/css/css-borders-4/parsing/corners-computed.html new file mode 100644 index 00000000000000..6605f9eeb0cccf --- /dev/null +++ b/css/css-borders-4/parsing/corners-computed.html @@ -0,0 +1,50 @@ + + +CSS Borders and Box Decorations 4 Test: Computed values of 'corners' + + + + + + + +
+ + diff --git a/css/css-borders-4/parsing/corners-invalid.html b/css/css-borders-4/parsing/corners-invalid.html new file mode 100644 index 00000000000000..1a762a757250e0 --- /dev/null +++ b/css/css-borders-4/parsing/corners-invalid.html @@ -0,0 +1,25 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'corners' with invalid values + + + + + + + + diff --git a/css/css-borders-4/parsing/corners-valid.html b/css/css-borders-4/parsing/corners-valid.html new file mode 100644 index 00000000000000..5b1ae7afb3f9fd --- /dev/null +++ b/css/css-borders-4/parsing/corners-valid.html @@ -0,0 +1,48 @@ + + +CSS Borders and Box Decorations 4 Test: Parsing 'corners' with valid values + + + + + + + +