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-inline-elements.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/fast/shapes/shape-inside/shape-inside-inline-elements.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-inline-elements.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-inline-elements.html
deleted file mode 100644
index 884072926cf451304864e9c1b9a0f7a9d90aa7e0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-inline-elements.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
- #shape-inside {
- font-size: 0;
- width: 300px;
- height: 300px;
- shape-inside: rectangle(100px, 100px, 200px, 200px);
- position: relative;
- }
- #border {
- position: absolute;
- width: 200px;
- height: 200px;
- left: 98px;
- top: 98px;
- border: 2px solid blue;
- }
- .inline {
- width: 100px;
- height: 100px;
- display: inline-block;
- background-color: green;
- }
-</style>
-</head>
-<body>
- Should display a green square with a blue outline.
- <div id="shape-inside">
- <div id="border"></div>
- <div class="inline"></div><div class="inline"></div><div class="inline"></div><div class="inline"></div>
- </div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698