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

Unified Diff: LayoutTests/css3/filters/effect-reference-obb-dimensions.html

Issue 1346143005: Scale objectBoundingBox units for primitive dimensions w/ -webkit-filter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-reference-obb-dimensions-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/filters/effect-reference-obb-dimensions.html
diff --git a/LayoutTests/css3/filters/effect-reference-obb-dimensions.html b/LayoutTests/css3/filters/effect-reference-obb-dimensions.html
new file mode 100644
index 0000000000000000000000000000000000000000..744d6a68300b6d1447f9db35ceba521aaafe4c0c
--- /dev/null
+++ b/LayoutTests/css3/filters/effect-reference-obb-dimensions.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<style>
+body {
+ margin: 0;
+ padding: 0;
+}
+#target {
+ position: absolute;
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ -webkit-filter: url('#bboxOffset');
+ filter: url('#bboxOffset');
+}
+</style>
+<div id="target"></div>
+<svg height="0">
+ <filter id="bboxOffset" primitiveUnits="objectBoundingBox" x="0" y="0" width="1.25" height="1.25">
+ <feOffset dx="0.2" dy="0.2"/>
+ </filter>
+</svg>
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-reference-obb-dimensions-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698