diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-sizing/aspect-ratio/reference')
3 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-filled-green-100x20-rect.html b/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-filled-green-100x20-rect.html new file mode 100644 index 0000000000..5d8ebce4ec --- /dev/null +++ b/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-filled-green-100x20-rect.html @@ -0,0 +1,4 @@ +<!DOCTYPE html> +<link rel="author" title="Mozilla" href="https://www.mozilla.org/"> + +<div style="background: green; width: 100px; height: 20px;"></div> diff --git a/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-square-with-scrollbar.html b/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-square-with-scrollbar.html new file mode 100644 index 0000000000..128bf336e7 --- /dev/null +++ b/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-square-with-scrollbar.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<link rel="author" title="Google LLC" href="https://www.google.com/"> + +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> + +<div style="background: green; width: 100px; height: 100px; overflow: scroll;"> + <div style="height: 600px"></div> +</div> diff --git a/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-square-with-vertical-scrollbar.html b/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-square-with-vertical-scrollbar.html new file mode 100644 index 0000000000..5663e16dd8 --- /dev/null +++ b/testing/web-platform/tests/css/css-sizing/aspect-ratio/reference/ref-square-with-vertical-scrollbar.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<link rel="author" title="Google LLC" href="https://www.google.com/"> + +<p>Test passes if there is a filled green square and <strong>no red</strong>.</p> + +<div style="background: green; width: 100px; height: 100px; overflow-y: scroll;"> + <div style="height: 600px"></div> +</div> |