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

Unified Diff: third_party/WebKit/LayoutTests/fast/box-shadow/box-shadow-with-zero-radius-expected.html

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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/fast/box-shadow/box-shadow-with-zero-radius-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/box-shadow/box-shadow-with-zero-radius-expected.html b/third_party/WebKit/LayoutTests/fast/box-shadow/box-shadow-with-zero-radius-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..46e5457593e78f032c0ecd1bb07791e6ccde0354
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/box-shadow/box-shadow-with-zero-radius-expected.html
@@ -0,0 +1,62 @@
+<!doctype html>
+<html>
+<head>
+<style type="text/css">
+.greenSquare {
+ position: absolute;
+ top:50px;
+ left:50px;
+ width: 100px;
+ height: 100px;
+ border-bottom-right-radius: 50px 50px;
+ border-top-left-radius: 50px 50px;
+ background-color: green;
+}
+
+.yellowSquare {
+ position: absolute;
+ top: 20px;
+ left: 250px;
+ width: 120px;
+ height: 120px;
+ border-top-right-radius: 60px 60px;
+ border-bottom-left-radius: 70px 60px;
+ background-color: yellow;
+}
+
+.green-shadow {
+ position: absolute;
+ top: 150px;
+ left: 150px;
+ width: 120px;
+ height: 120px;
+ border-bottom-right-radius: 60px 60px;
+ border-top-left-radius: 60px 60px;
+ background-color: black;
+}
+
+.yellow-shadow {
+ position: absolute;
+ top: 160px;
+ left: 350px;
+ width: 140px;
+ height: 140px;
+ border-top-right-radius: 70px 70px;
+ border-bottom-left-radius: 80px 70px;
+ background-color: black;
+}
+
+.container {
+ position: absolute;
+}
+</style>
+</head>
+<body>
+<div class="container">
+ <div id="yellowShadow" class="yellow-shadow"></div>
+ <div id="yellow" class="yellowSquare"></div>
+ <div id="greenShadow" class="green-shadow"></div>
+ <div id="green" class="greenSquare"></div>
+</div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698