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

Unified Diff: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-005.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-padding-005.html
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-005.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-005.html
deleted file mode 100644
index 081ef43a3a36dc08aeeff9ecae44b898865dc029..0000000000000000000000000000000000000000
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-005.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<title>CSS Test: shape-outside on floats with padding</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://dev.w3.org/csswg/css-shapes-1/#relation-to-box-model-and-float-behavior">
-<meta name="assert" content="This tests if padding on the opposite logical side as the float direction (eg: right padding on left float) is properly ignored in the case of a zero extent shape.">
-<link rel="match" href="shape-outside-floats-padding-000-ref.html">
-<meta name="flags" content="ahem">
-<head>
-<style>
-.container {
- font: 20px/1 Ahem, sans-serif;
- width: 100px;
- height: 20px;
- border: 1px solid black;
- color: green;
- display: inline-block;
- background-color: red;
-}
-
-#float-left {
- float: left;
- width: 100px;
- height: 20px;
- shape-outside: rectangle(0, 0, 0, 100%);
- padding-right: 20px;
-}
-
-#float-right {
- float: right;
- width: 100px;
- height: 20px;
- shape-outside: rectangle(0, 0, 0, 100%);
- padding-left: 20px;
-}
-</style>
-
-<body>
- <p>This should display two horizontal green bars. You should not see any red.</p>
- <div class="container" style="text-align: right">
- <div id="float-right">
- </div>
- XXXXX
- </div>
- <div class="container">
- <div id="float-left">
- </div>
- XXXXX
- </div>
-</body>

Powered by Google App Engine
This is Rietveld 408576698