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

Unified Diff: LayoutTests/css3/filters/effect-reference-subregion-hidpi.html

Issue 136473005: These are some reftests which cover filter primitive subregion when scaled by page (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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-subregion-hidpi-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-subregion-hidpi.html
diff --git a/LayoutTests/css3/filters/effect-reference-subregion-hidpi.html b/LayoutTests/css3/filters/effect-reference-subregion-hidpi.html
new file mode 100644
index 0000000000000000000000000000000000000000..e701d29cd6d4cfeecd8f36343f86f1963b5aed1c
--- /dev/null
+++ b/LayoutTests/css3/filters/effect-reference-subregion-hidpi.html
@@ -0,0 +1,27 @@
+<script>
+ if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.setBackingScaleFactor(2, function() { testRunner.notifyDone(); });
+ }
+</script>
+<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
+ <defs>
+ <filter id="colormatrix" color-interpolation-filters="sRGB">
+ <feColorMatrix x="10" y="20" width="80" height="60"/>
+ </filter>
+ </defs>
+</svg>
+<style>
+.filtered {
+ -webkit-filter: url(#colormatrix);
+ filter: url(#colormatrix);
+ background-color: green;
+ width: 100px;
+ height: 100px;
+}
+body {
+ margin: 0px;
+}
+</style>
+<div class="filtered">
+</div>
« no previous file with comments | « no previous file | LayoutTests/css3/filters/effect-reference-subregion-hidpi-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698