From 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:47:29 +0200 Subject: Adding upstream version 115.8.0esr. Signed-off-by: Daniel Baumann --- .../css-grid/animation/grid-no-interpolation.html | 62 ++++++ .../animation/grid-template-columns-001-ref.html | 21 ++ .../animation/grid-template-columns-001.html | 38 ++++ .../grid-template-columns-composition.html | 247 +++++++++++++++++++++ .../grid-template-columns-interpolation.html | 230 +++++++++++++++++++ ...grid-template-columns-neutral-keyframe-001.html | 26 +++ ...grid-template-columns-neutral-keyframe-002.html | 26 +++ ...grid-template-columns-neutral-keyframe-003.html | 28 +++ ...grid-template-columns-neutral-keyframe-004.html | 26 +++ .../animation/grid-template-rows-001-ref.html | 22 ++ .../css-grid/animation/grid-template-rows-001.html | 39 ++++ .../animation/grid-template-rows-composition.html | 247 +++++++++++++++++++++ .../grid-template-rows-interpolation.html | 231 +++++++++++++++++++ .../grid-template-rows-neutral-keyframe-001.html | 26 +++ .../grid-template-rows-neutral-keyframe-002.html | 26 +++ .../grid-template-rows-neutral-keyframe-003.html | 28 +++ .../grid-template-rows-neutral-keyframe-004.html | 26 +++ 17 files changed, 1349 insertions(+) create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-no-interpolation.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001-ref.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-composition.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-interpolation.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-001.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-002.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-003.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-004.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-composition.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-interpolation.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-001.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-002.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-003.html create mode 100644 testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-004.html (limited to 'testing/web-platform/tests/css/css-grid/animation') diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-no-interpolation.html b/testing/web-platform/tests/css/css-grid/animation/grid-no-interpolation.html new file mode 100644 index 0000000000..1293cdb9d5 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-no-interpolation.html @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001-ref.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001-ref.html new file mode 100644 index 0000000000..1d53815f37 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001-ref.html @@ -0,0 +1,21 @@ + + + + CSS Grid: Reference for grid-template-columns interpolation + + + +
+ column1 + column2 +
+ + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001.html new file mode 100644 index 0000000000..4e618edb22 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-001.html @@ -0,0 +1,38 @@ + + + + CSS Grid: Test grid-template-columns interpolation + + + + + + +
+ column1 + column2 +
+ + + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-composition.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-composition.html new file mode 100644 index 0000000000..2db49bc53e --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-composition.html @@ -0,0 +1,247 @@ + + + + + grid-template-columns composition + + + + + + + + + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-interpolation.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-interpolation.html new file mode 100644 index 0000000000..55df24f708 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-interpolation.html @@ -0,0 +1,230 @@ + + + + + grid-template-columns interpolation + + + + + + + + + + + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-001.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-001.html new file mode 100644 index 0000000000..070539e2c0 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-001.html @@ -0,0 +1,26 @@ + + + + + grid-template-columns neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-002.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-002.html new file mode 100644 index 0000000000..6cd163711e --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-002.html @@ -0,0 +1,26 @@ + + + + + grid-template-columns neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-003.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-003.html new file mode 100644 index 0000000000..80187cf684 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-003.html @@ -0,0 +1,28 @@ + + + + + grid-template-columns neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-004.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-004.html new file mode 100644 index 0000000000..a207aa713c --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-columns-neutral-keyframe-004.html @@ -0,0 +1,26 @@ + + + + + grid-template-columns neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html new file mode 100644 index 0000000000..8f9929f97d --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001-ref.html @@ -0,0 +1,22 @@ + + + + CSS Grid: Reference for grid-template-rows interpolation + + + +
+ row1 + row2 +
+ + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001.html new file mode 100644 index 0000000000..403fed432a --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-001.html @@ -0,0 +1,39 @@ + + + + CSS Grid: Test grid-template-rows interpolation + + + + + + +
+ row1 + row2 +
+ + + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-composition.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-composition.html new file mode 100644 index 0000000000..42f9c92e9a --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-composition.html @@ -0,0 +1,247 @@ + + + + + grid-template-rows composition + + + + + + + + + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-interpolation.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-interpolation.html new file mode 100644 index 0000000000..f749cbd832 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-interpolation.html @@ -0,0 +1,231 @@ + + + + + grid-template-rows interpolation + + + + + + + + + + + diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-001.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-001.html new file mode 100644 index 0000000000..ecbe0481ed --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-001.html @@ -0,0 +1,26 @@ + + + + + grid-template-rows neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-002.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-002.html new file mode 100644 index 0000000000..f63d45b4a7 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-002.html @@ -0,0 +1,26 @@ + + + + + grid-template-rows neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-003.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-003.html new file mode 100644 index 0000000000..5ffd67528c --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-003.html @@ -0,0 +1,28 @@ + + + + + grid-template-rows neutral keyframe + + + + + + + +
+ + + \ No newline at end of file diff --git a/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-004.html b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-004.html new file mode 100644 index 0000000000..941e843624 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/animation/grid-template-rows-neutral-keyframe-004.html @@ -0,0 +1,26 @@ + + + + + grid-template-rows neutral keyframe + + + + + + + +
+ + + \ No newline at end of file -- cgit v1.2.3