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

Unified Diff: LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html

Issue 1304503002: Fix sub-pixel handling of transparency boxes in DPL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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/fast/sub-pixel/nested-transparency-layer-clipping-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html
diff --git a/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html b/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html
new file mode 100644
index 0000000000000000000000000000000000000000..532e8d1dbfaa5faaacb882c0b4260f9b0914bb83
--- /dev/null
+++ b/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
eae 2015/08/20 17:01:37 What, no title tag? :p
+<style>
+body {
+ position: relative;
+ left: 0.5px;
+}
+.parent {
+ display: inline-block;
+ transform: scale(5);
+ opacity: 0.8;
+}
+.child {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background: red;
+ border: 1px solid black;
+}
+</style>
+<div class="parent">
+ <div class="child"></div>
+</div>
« no previous file with comments | « no previous file | LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698