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

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: Add clip path test for ancestor and descendant 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..b7dba5ed5defbed704114f6c9dc323287964d2d4 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;
}
@@ -30,7 +44,7 @@ body {
</style>
<div id="scroller1">
- <div class="content"></div>
+ <div class="content" id="content1"></div>
</div>
<div id="scroller2">
<div class="content"></div>
« no previous file with comments | « third_party/WebKit/Source/web/tests/ScrollingCoordinatorTest.cpp ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698