diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-images/tools/object-view-box-fit-contain-template.html')
-rw-r--r-- | testing/web-platform/tests/css/css-images/tools/object-view-box-fit-contain-template.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-images/tools/object-view-box-fit-contain-template.html b/testing/web-platform/tests/css/css-images/tools/object-view-box-fit-contain-template.html new file mode 100644 index 0000000000..f874e65b88 --- /dev/null +++ b/testing/web-platform/tests/css/css-images/tools/object-view-box-fit-contain-template.html @@ -0,0 +1,49 @@ +<!DOCTYPE html> +<html> +<title>CSS object-view-box with object-fit:contain</title> +<link rel="author" href="mailto:khushalsagar@chromium.org"> +<link rel="match" href="object-view-box-fit-contain-__NAME__-ref.html"> +<script src="support/testHelper.js"></script> +<link rel="help" href="https://drafts.csswg.org/css-images-4/#the-object-view-box"> + +<body> +<style> +.view_box_subset { + object-view-box: inset(50px 0px 0px 0px); + object-fit: contain; + width: 50px; + height: 100px; + background-color: grey; + margin: 5px; +} + +.view_box_subset_with_position { + object-view-box: inset(50px 0px 0px 0px); + object-fit: contain; + width: 50px; + height: 100px; + background-color: grey; + margin: 5px; + + object-position: 0% 0%; + background-color: grey; +} + +.view_box_subset_with_scaling { + object-view-box: inset(50px 0px 0px 0px); + object-fit: contain; + background-color: grey; + margin: 5px; + + width: 100px; + height: 200px; + object-position: 25px 125px; +} +</style> +<__TAG__ class="view_box_subset"></__TAG__> +<__TAG__ class="view_box_subset_with_position"></__TAG__> +<__TAG__ class="view_box_subset_with_scaling"></__TAG__> +</body> +<script> + populateElements("__IMAGE_SOURCE__"); +</script> |