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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions-block-content.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-overflow-fixed-dimensions-block-content.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions-block-content.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions-block-content.html
deleted file mode 100644
index 1c5eeb78aa16bf30ac4df37f4aea6b881b78e644..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions-block-content.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
- if (window.internals)
- window.internals.settings.setCSSShapesEnabled(true);
-</script>
-<style>
-#container {
- font: 20px Ahem, sans-serif;
- line-height: 20px;
- -webkit-font-smoothing: none;
- border: 2px solid blue;
- border-bottom: 30px solid yellow;
- position: relative;
- width: 200px;
- height: 200px;
- margin-bottom: 60px;
-}
-#shape-inside {
- width: 200px;
- height: 200px;
- shape-inside: polygon(50px 0px, 150px 0px, 150px 60px, 50px 60px);
-}
-#border {
- position: absolute;
- margin-top: -2px;
- left: 48px;
- width: 100px;
- height: 60px;
- border: 2px solid green;
-}
-</style>
-</head>
-<body>
- <div id="container">
- <div id="border"></div>
- <div id="shape-inside">
- X X <p>X X X</p> X X X X X X X X X X
- </div>
- </div>
- <p>Requires Ahem font. The block content should start inside the green rectangle (shape-inside) and the overflow should be pushed below the content box. The overflow should start where the yellow bottom border starts. <br/>
- <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