Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: LayoutTests/fast/css/object-position-svg.html

Issue 24077007: Add support for the object-position CSS property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase master again Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css/object-position-svg.html
diff --git a/LayoutTests/fast/css/object-position-svg.html b/LayoutTests/fast/css/object-position-svg.html
new file mode 100644
index 0000000000000000000000000000000000000000..a0dc98a9c669c4644152a4fee69d756a50414a06
--- /dev/null
+++ b/LayoutTests/fast/css/object-position-svg.html
@@ -0,0 +1,50 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <title>object-position on SVG images</title>
+ <style type="text/css">
+ img {
+ object-fit: none;
+ width: 72px;
+ height: 144px;
+ margin: 2px 10px;
+ border: 1px solid black;
+ padding: 5px;
+ background-color: gray;
+ }
+
+ .group { object-position: 30px 30px; }
+ .group > *:nth-child(1) { object-position: right top; }
+ .group > *:nth-child(2) { object-position: left bottom; }
+ .group > *:nth-child(3) { object-position: 10px 125%; }
+ .group > *:nth-child(4) { object-position: 200%; }
+ .group > *:nth-child(5) { object-position: -100%; }
+ .group > *:nth-child(6) { object-position: -25% -10px; }
+ .group > *:nth-child(7) { object-position: 72px 0px; }
+ .group > *:nth-child(8) { object-position: 0px 72px; }
+ .group > *:nth-child(9) { object-position: -72px 0px; }
+ .group > *:nth-child(10) { object-position: 0px -72px; }
+ .group > *:nth-child(11) { object-position: inherit; }
+ .group > *:nth-child(12) { }
+ </style>
+ </head>
+ <body>
+
+ <div class="group">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ <img src="resources/circle-small.svg" type="image/svg+xml">
+ </div>
+
+ </body>
+</html>
« no previous file with comments | « LayoutTests/fast/css/object-position-expected.html ('k') | LayoutTests/fast/css/object-position-svg-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698