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

Unified Diff: LayoutTests/fast/shapes/shape-inside/floats/shape-inside-left-float-in-upper-left-triangle-vertical-lr-inline-content-expected.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/floats/shape-inside-left-float-in-upper-left-triangle-vertical-lr-inline-content-expected.html
diff --git a/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-left-float-in-upper-left-triangle-vertical-lr-inline-content-expected.html b/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-left-float-in-upper-left-triangle-vertical-lr-inline-content-expected.html
deleted file mode 100644
index 42b65507e7b436913f7f86b07e73812f946ae67a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-left-float-in-upper-left-triangle-vertical-lr-inline-content-expected.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
- #polygon-svg-shape {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 200px;
- height: 200px;
- }
- #shape-inside {
- -webkit-writing-mode: vertical-lr;
- font: 20px Ahem, sans-serif;
- line-height: 20px;
- position: absolute;
- left: 0px;
- top: 0px;
- }
- #float {
- width: 50px;
- height: 50px;
- float: left;
- background-color: yellow;
- }
- #overflow {
- height: 200px;
- margin-left: 20px;
- }
-</style>
-</head>
-<body>
- <svg id="polygon-svg-shape" xmlns="http://www.w3.org/2000/svg">
- <polygon points="0,0 200,0 0,200" fill="#636363"></polygon>
- </svg>
- <div id="shape-inside">
- <div id="float"></div>
- <span style="color: red;">X</span>
- <span style="color: white;">X</span>
- <span style="color: green;">X</span><br/>
- X X X<br/>
- X X<br/>
- X X X<br/>
- X X X<br/>
- X X<br/>
- X X<br/>
- X<br/>
- X<br/>
- <div id="overflow">X X X X X X</div>
- </div>
-
- <p style="margin-top: 250px;">
- There is a triangle shape-inside (represented by the matching filled SVG polygon), the shape-inside contains a 50x50px yellow float left,
- the float should be at the very left and top position inside the triangle shape where it fits first.
- The writing mode is vertical-lr, the first column under the yellow float should contain a red, white and green box in this order.
- The overflow should be pushed on the right side of triangle shape-inside.
- </p>
- <p>Bug <a href="http://webkit.org/b/102846">102846</a>: [CSS Shapes] Use the float height to determine position in shape-inside</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698