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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-003.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-003.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-003.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-003.html
deleted file mode 100644
index 5ac5203a69c1d04194cd125ecee206d06d37a2ef..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-003.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-.shape-container {
- position: relative;
- width: 400px;
- height: 200px;
- margin: 10px;
-}
-
-.shape-background {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 400px;
- height: 200px;
- border-radius: 50px / 50px;
- background-color: rgb(200,200,200);
-}
-
-.shape-inside-vertical-rl {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 400px;
- height: 200px;
- shape-inside: rectangle(0px, 0px, 400px, 200px, 50px, 50px);
- -webkit-writing-mode: vertical-rl;
- font: 50px/1 Ahem, sans-serif;
- color: green;
-}
-
-.shape-inside-vertical-lr {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 400px;
- height: 200px;
- shape-inside: rectangle(0px, 0px, 400px, 200px, 50px, 50px);
- -webkit-writing-mode: vertical-lr;
- font: 50px/1 Ahem, sans-serif;
- color: green;
-}
-</style>
-</head>
-<body>
-<p>The green rectangle should appear just to the left of the grey rounded rectangle's upper corners.</p>
-<div class="shape-container">
- <div class="shape-background"></div>
- <div class="shape-inside-vertical-rl">XXXX</div>
-</div>
-</p>
-
-<p>The green rectangle should appear just to the left of the grey rounded rectangle's upper corners.</p>
-<div class="shape-container">
- <div class="shape-background"></div>
- <div class="shape-inside-vertical-lr">XXXX</div>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698