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

Unified Diff: LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.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
Index: LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.html
diff --git a/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.html b/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..16c17cdb9ac21592b97a7a835ae7bda02d14dc5e
--- /dev/null
+++ b/LayoutTests/fast/sub-pixel/nested-transparency-layer-clipping-expected.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<style>
+body {
+ position: relative;
+ left: 1px;
+}
+.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>

Powered by Google App Engine
This is Rietveld 408576698