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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001.html

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations Created 6 years, 9 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/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001.html
deleted file mode 100644
index f1bdff2cb8dad8da1b70e4b76c7d21f33da62aac..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-001.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-.shape-container {
- position: relative;
- width: 400px;
- height: 20px;
- margin: 10px;
-}
-
-.shape-background {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 400px;
- height: 200px;
- border-radius: 200px / 50px;
- background-color: rgb(200,200,200);
-}
-
-.shape-inside {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 400px;
- height: 200px;
- shape-inside: rectangle(0px, 0px, 400px, 200px, 200px, 50px);
- font: 50px/1 Ahem, sans-serif;
- color: green;
-}
-</style>
-</head>
-<body>
-<p>The green rectangle should appear just below the grey rounded rectangle's upper corners.</p>
-<div class="shape-container">
- <div class="shape-background"></div>
- <div class="shape-inside">XXXXXXXX</div>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698