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

Unified Diff: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.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/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
deleted file mode 100644
index b0e23ab7f97c6f50e1321f11bfc2f06db3b0d971..0000000000000000000000000000000000000000
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!DOCTYPE html>
-<title>CSS Test: rounded rectangle shape-outside on floats with clamped radii values</title>
-<link rel="author" title="Adobe" href="http://html.adobe.com/">
-<link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com">
-<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property">
-<link rel="match" href="shape-outside-floats-rounded-rectangle-004-ref.html">
-<meta name="flags" content="ahem">
-<style>
-.container {
- font: 20px/1 Ahem, sans-serif;
- width: 160px;
- height: 80px;
- margin: 5px;
-}
-.float {
- float: left;
- width: 80px;
- height: 80px;
- background-color: blue;
- overflow: hidden;
- border-radius: 50%;
-}
-.fixed-units {
- shape-outside: rectangle(0px, 0px, 80px, 80px, 80px, 80px);
-}
-.different-units {
- shape-outside: rectangle(0px, 0px, 80px, 80px, 100%, 100%);
-}
-.relative-units {
- shape-outside: rectangle(0px, 0px, 100%, 100%, 700em, 700em);
-}
-.edge-case {
- shape-outside: rectangle(0px, 0px, 100%, 100%, 50%, 50%);
-}
-</style>
-<body>
- <div class="container">
- <div class="float fixed-units"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <div class="container">
- <div class="float relative-units"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <div class="container">
- <div class="float different-units"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <div class="container">
- <div class="float edge-case"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
-</body>

Powered by Google App Engine
This is Rietveld 408576698