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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty 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-bottom-edge.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html
deleted file mode 100644
index cb662c44b08fda3c7c937bcef1cdc2d95e05b454..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-.box {
- width: 450px;
- height: 100px;
- line-height: 20px;
- outline: 2px solid green;
-}
-
-.polygon {
- -webkit-shape-inside: polygon(25px 25px, 425px 25px, 425px 75px, 25px 75px);
-}
-
-.details {
- padding-top: 15px;
- font-style: italic;
-}
-</style>
-</head>
-
-<body>
- <div class="box polygon">
- <p style="padding-top: 55px;">Content1</p>
- </div>
-<p class="details">There is a 400x50px shape-inside polygon inside the green box.<br/>The Content1 text line's bottom equals to the shape-inside's polygon bottom boundary, so it should fit in the shape-inside.</p>
-<hr>
-
-<div class="box polygon">
- <p style="padding-top: 60px;">Content2</p>
-</div>
-<p class="details">There is a 400x50px shape-inside polygon inside the green box.<br/>The Content2 text line overlaps with the shape-inside's polygon bottom boundary, so the Content2 should be pushed below the content box.</p>
-<hr>
-
-<div class="box polygon">
- <p style="padding-top: 76px;">Content3</p>
-</div>
-<p class="details">There is a 400x50px shape-inside polygon inside the green box.<br/>The Content3 text line starts after the shape-inside's polygon bottom boundary, so the Content3 should be pushed below the content box.</p>
-<hr>
-
-<p>Based on a recent change on the <a href="http://dev.w3.org/csswg/css-exclusions/#shape-inside-property">exclusions specification</a>. The 'shape-inside' property adds an exclusion area to the element's wrapping context.
-This modifies the normal rectangular shape of the content area to a possibly non-rectangular wrapping area. The exclusion area added is defined by subtracting the shape from the element's content area.</p>
-<p>Bug <a href="http://webkit.org/b/114526 ">114526</a>: [CSS Exclusions] shape-inside overflow should be pushed to the outside of the content box</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698