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

Unified Diff: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-001-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-001-expected.html
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-001-expected.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-001-expected.html
deleted file mode 100644
index 00477330b4593c1e5c9d7bf55bdc5689e3f7d737..0000000000000000000000000000000000000000
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-001-expected.html
+++ /dev/null
@@ -1,94 +0,0 @@
-<!DOCTYPE html>
-<title>shape-outside-floats-rounded-rectangle-001-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;
- width: 500px;
- height: 200px;
- border: 1px solid black;
-}
-
-.rounded-rect {
- z-index: -1;
- width: 320px;
- height: 160px;
- border-radius: 60px;
- background-color: blue;
- overflow: hidden;
-}
-
-#left-rounded-rect-outline {
- position: absolute;
- top: 20px;
- left: 0px;
-}
-
-#right-rounded-rect-outline {
- position: absolute;
- top: 20px;
- right: 0px;
-}
-
-.left-rounded-rect-float-line {
- float: left;
- clear: left;
- height: 20px;
-}
-
-.right-rounded-rect-float-line {
- float: right;
- clear: right;
- height: 20px;
-}
-</style>
-
-<body>
-<p>The black squares should trace the right side of the rounded rectangle's blue outline.</p>
-<div class="container">
-X<br/>
- <div id="left-rounded-rect-outline" class="rounded-rect"></div>
- <!-- generated left-rounded-rect-float-line divs will be inserted here -->
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X
-</div>
-
-<p>The black squares should trace the left side of the rounded rectangle's blue outline.</p>
-<div class="container" style="text-align: right">
-X<br/>
- <div id="right-rounded-rect-outline" class="rounded-rect"></div>
- <!-- generated right-rounded-rect-float-line divs will be inserted here -->
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X<br/>
-X
-</div>
-</body>
-
-<script src="resources/rounded-rectangle.js"></script>
-<script src="resources/subpixel-utils.js"></script>
-<script>
-genLeftRightRoundedRectFloatShapeOutsideRefTest({
- roundedRect: {x: 0, y: 20, width: 320, height: 160, rx: 60, ry: 60},
- containerWidth: 500,
- containerHeight: 200,
- lineHeight: 20,
- floatElementClassSuffix: "rounded-rect-float-line",
- insertElementIdSuffix: "rounded-rect-outline"
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698