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

Unified Diff: third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html

Issue 2447013005: Revert of Turn on Analytic AA in Chrome (Closed)
Patch Set: Created 4 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
Index: third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html
diff --git a/third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html b/third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..1a5bc64ba518c694f8f55596c4e5af02d24b36a7
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/paint/clipath/clip-path-with-background-and-box-behind-expected.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<style>
+#boxpos {
+ position: absolute;
+ background-color: green;
+}
+.box {
+ position: relative;
+ -webkit-clip-path: url(#equitri);
+ height: 100px;
+ width: 100px;
+ background: red;
+}
+</style>
+<div id="boxpos">
+ <div class="box"></div>
+</div>
+
+<svg id="tri">
+ <clipPath id="equitri" clipPathUnits="objectBoundingBox">
+ <polygon points=".5 0, 0 .86, 1 .86, .5 0" />
+ </clipPath>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698