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

Unified Diff: third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport.html

Issue 1369923006: Add test for crbug.com/231604 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport.html
diff --git a/third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport.html b/third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport.html
new file mode 100644
index 0000000000000000000000000000000000000000..ac4c5cd1e285a6b0c2a97af123362c8ff2a2fe59
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<svg width="100" height="100">
+ <filter id="largeOffsetFilter" x="0" y="0" width="1" height="1">
+ <feOffset dx="-2000" dy="-2000"/>
+ </filter>
+ <g filter="url(#largeOffsetFilter)">
+ <rect x="0" y="0" width="100" height="100" fill="red"/>
+ <rect x="2000" y="2000" width="100" height="100" fill="green"/>
+ </g>
+</svg>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/filters/filter-source-outside-viewport-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698