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

Unified Diff: third_party/WebKit/Source/web/tests/data/two_scrollable_area.html

Issue 2613743002: Clip related property and border radius are now recorded for UMA (Closed)
Patch Set: Test both LCD and non-LCD reasons Created 3 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
Index: third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
diff --git a/third_party/WebKit/Source/web/tests/data/two_scrollable_area.html b/third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
index 291863c224e26828fbb5dd14adfdb9aa444c24e0..5f7d853a51fcbc9f7d7178fcaae603ec42083e1d 100644
--- a/third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
+++ b/third_party/WebKit/Source/web/tests/data/two_scrollable_area.html
@@ -13,6 +13,20 @@
background: rgba(255, 0, 0, 0.5);
}
+.border-radius {
+ border: 2px solid;
+ border-radius: 20px;
+}
+
+.clip {
+ position: absolute;
+ clip: rect(0px,120px,120px,0px);
+}
+
+.clip-path{
+ clip-path: circle(115px at 20px 20px);
+}
+
.content {
height: 500px;
}

Powered by Google App Engine
This is Rietveld 408576698