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 --- .../css/zoom/tentative/background-image-ref.html | 10 +++++++++ .../tests/css/zoom/tentative/background-image.html | 12 ++++++++++ .../tests/css/zoom/tentative/basic-ref.html | 10 +++++++++ .../tests/css/zoom/tentative/basic.html | 15 +++++++++++++ .../css/zoom/tentative/green-square-100px.html | 3 +++ .../css/zoom/tentative/image-intrinsic-size.html | 14 ++++++++++++ .../tests/css/zoom/tentative/inherited-length.html | 14 ++++++++++++ .../tests/css/zoom/tentative/inherited.html | 20 +++++++++++++++++ .../css/zoom/tentative/parsing/zoom-computed.html | 22 ++++++++++++++++++ .../css/zoom/tentative/parsing/zoom-valid.html | 26 ++++++++++++++++++++++ .../css/zoom/tentative/scroll-corner-crash.html | 7 ++++++ .../tests/css/zoom/tentative/scrollbar-crash.html | 2 ++ 12 files changed, 155 insertions(+) create mode 100644 testing/web-platform/tests/css/zoom/tentative/background-image-ref.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/background-image.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/basic-ref.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/basic.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/green-square-100px.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/image-intrinsic-size.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/inherited-length.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/inherited.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/parsing/zoom-valid.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/scroll-corner-crash.html create mode 100644 testing/web-platform/tests/css/zoom/tentative/scrollbar-crash.html (limited to 'testing/web-platform/tests/css/zoom') diff --git a/testing/web-platform/tests/css/zoom/tentative/background-image-ref.html b/testing/web-platform/tests/css/zoom/tentative/background-image-ref.html new file mode 100644 index 0000000000..6fe548f343 --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/background-image-ref.html @@ -0,0 +1,10 @@ + +CSS Test Reference + +
diff --git a/testing/web-platform/tests/css/zoom/tentative/background-image.html b/testing/web-platform/tests/css/zoom/tentative/background-image.html new file mode 100644 index 0000000000..db6baa60db --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/background-image.html @@ -0,0 +1,12 @@ + +Zoom affects background-image intrinsic sizes + + +
diff --git a/testing/web-platform/tests/css/zoom/tentative/basic-ref.html b/testing/web-platform/tests/css/zoom/tentative/basic-ref.html new file mode 100644 index 0000000000..5de90caf7f --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/basic-ref.html @@ -0,0 +1,10 @@ + + +CSS test reference + +
+
diff --git a/testing/web-platform/tests/css/zoom/tentative/basic.html b/testing/web-platform/tests/css/zoom/tentative/basic.html new file mode 100644 index 0000000000..fcd1761cfa --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/basic.html @@ -0,0 +1,15 @@ + + +zoom property: basic test + + + + +
+
diff --git a/testing/web-platform/tests/css/zoom/tentative/green-square-100px.html b/testing/web-platform/tests/css/zoom/tentative/green-square-100px.html new file mode 100644 index 0000000000..6677176230 --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/green-square-100px.html @@ -0,0 +1,3 @@ + + +
diff --git a/testing/web-platform/tests/css/zoom/tentative/image-intrinsic-size.html b/testing/web-platform/tests/css/zoom/tentative/image-intrinsic-size.html new file mode 100644 index 0000000000..d152bb24ee --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/image-intrinsic-size.html @@ -0,0 +1,14 @@ + + +Zoom affects image intrinsic sizes + + + + + + diff --git a/testing/web-platform/tests/css/zoom/tentative/inherited-length.html b/testing/web-platform/tests/css/zoom/tentative/inherited-length.html new file mode 100644 index 0000000000..2bc04ff0cb --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/inherited-length.html @@ -0,0 +1,14 @@ + + +zoom property: inherited length into zoom + + + + +
+
+
diff --git a/testing/web-platform/tests/css/zoom/tentative/inherited.html b/testing/web-platform/tests/css/zoom/tentative/inherited.html new file mode 100644 index 0000000000..baa7f7ed8a --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/inherited.html @@ -0,0 +1,20 @@ + + +Effective zoom value is inherited + + + + +
+
+
+
diff --git a/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html b/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html new file mode 100644 index 0000000000..3737901490 --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-computed.html @@ -0,0 +1,22 @@ + + +CSS Test: getComputedStyle().zoom + + + +
+ diff --git a/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-valid.html b/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-valid.html new file mode 100644 index 0000000000..3db16e0748 --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/parsing/zoom-valid.html @@ -0,0 +1,26 @@ + + +CSS Test: parsing zoom with valid and invalid values + + + + + + + diff --git a/testing/web-platform/tests/css/zoom/tentative/scroll-corner-crash.html b/testing/web-platform/tests/css/zoom/tentative/scroll-corner-crash.html new file mode 100644 index 0000000000..0ec88deb74 --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/scroll-corner-crash.html @@ -0,0 +1,7 @@ + +

+
diff --git a/testing/web-platform/tests/css/zoom/tentative/scrollbar-crash.html b/testing/web-platform/tests/css/zoom/tentative/scrollbar-crash.html new file mode 100644 index 0000000000..791022407f --- /dev/null +++ b/testing/web-platform/tests/css/zoom/tentative/scrollbar-crash.html @@ -0,0 +1,2 @@ +