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

Unified Diff: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004-expected.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-expected.html
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004-expected.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004-expected.html
deleted file mode 100644
index 61f7703e2aa6455d7540505deddd534252702318..0000000000000000000000000000000000000000
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004-expected.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!DOCTYPE html>
-<title>shape-outside-floats-rounded-rectangle-004-reference.html</title>
-<link rel="author" title="Adobe" href="http://html.adobe.com/">
-<link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com">
-<meta name="flags" content="ahem dom">
-<style>
-.container {
- position: relative;
- font: 20px/1 Ahem, sans-serif;
- line-height: 20px;
- width: 160px;
- height: 80px;
- margin: 5px;
-}
-.rounded-rect {
- position: absolute;
- z-index: -1;
- top: 0px;
- left: 0px;
- width: 80px;
- height: 80px;
- background-color: blue;
- overflow: hidden;
- border-radius: 50%;
-}
-.left-rounded-rect-float-line {
- float: left;
- clear: left;
- height: 20px;
-}
-</style>
-<body>
- <div class="container">
- <div id="left-fixed-units" class="rounded-rect"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <div class="container">
- <div id="left-relative-units" class="rounded-rect"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <div class="container">
- <div id="left-different-units" class="rounded-rect"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <div class="container">
- <div id="left-edge-case" class="rounded-rect"></div>
- X<br/>
- X<br/>
- X<br/>
- X
- </div>
- <script src="resources/rounded-rectangle.js"></script>
- <script src="resources/subpixel-utils.js"></script>
- <script>
- genLeftRoundedRectFloatShapeOutsideRefTest({
- roundedRect: {x: 0, y: 0, width: 80, height: 80, rx: 40, ry: 40},
- containerWidth: 160,
- containerHeight: 80,
- lineHeight: 20,
- floatElementClassSuffix: "rounded-rect-float-line",
- insertElementIdSuffix: "fixed-units"
- });
- genLeftRoundedRectFloatShapeOutsideRefTest({
- roundedRect: {x: 0, y: 0, width: 80, height: 80, rx: 40, ry: 40},
- containerWidth: 160,
- containerHeight: 80,
- lineHeight: 20,
- floatElementClassSuffix: "rounded-rect-float-line",
- insertElementIdSuffix: "relative-units"
- });
- genLeftRoundedRectFloatShapeOutsideRefTest({
- roundedRect: {x: 0, y: 0, width: 80, height: 80, rx: 40, ry: 40},
- containerWidth: 160,
- containerHeight: 80,
- lineHeight: 20,
- floatElementClassSuffix: "rounded-rect-float-line",
- insertElementIdSuffix: "different-units"
- });
- genLeftRoundedRectFloatShapeOutsideRefTest({
- roundedRect: {x: 0, y: 0, width: 80, height: 80, rx: 40, ry: 40},
- containerWidth: 160,
- containerHeight: 80,
- lineHeight: 20,
- floatElementClassSuffix: "rounded-rect-float-line",
- insertElementIdSuffix: "edge-case"
- });
- </script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698