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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-shape-logical-top-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/shape-inside-shape-logical-top-expected.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-shape-logical-top-expected.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-shape-logical-top-expected.html
deleted file mode 100644
index 24e97cf983a243bee73df3f21f1881d3bbe2072d..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-shape-logical-top-expected.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style id="stylesheet">
- #shape-inside {
- position: relative;
- padding: 20.5px 35px 25px 15px;
- width: 150px;
- height: 175px;
- }
- #border {
- position: absolute;
- top: 13px;
- left: 8px;
- width: 161px;
- height: 186px;
- border: 2px solid blue;
- }
-</style>
-<script>
-function init() {
- // If subpixel layout is not enabled, fix shape-inside's padding-top value.
- var shapeInsideElt = document.getElementById("shape-inside");
- if (window.getComputedStyle(shapeInsideElt).paddingTop == "20px")
- shapeInsideElt.style.paddingTop = "21px"
-}
-</script>
-</head>
-<body onload="init()">
- <div id="shape-inside">
- <div id="border"></div>
- This text should be contained by the blue square.
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698