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

Unified Diff: LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple.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-floats-simple.html
diff --git a/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple.html b/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple.html
deleted file mode 100644
index 34f5a13b5d9e6e82754a2cd735d1e580761dd332..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/simple-rectangle.js"></script>
-<style id="stylesheet">
- .container {
- font: 10px/1 Ahem, sans-serif;
- }
- .spacer {
- width: 50px;
- height: 50px;
- background-color: green;
- }
- .vertical-lr {
- -webkit-writing-mode: vertical-lr;
- }
- .vertical-rl {
- -webkit-writing-mode: vertical-rl;
- }
-</style>
-<script>
- window.onload = function () {
- var content = 'XXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\n<div class="spacer" style="float:right"></div>\n<div class="spacer" style="float:left"></div>\nXXXXX\nXXXXX\nXXXXX\nXXXXX\nXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX';
- createRectangleTest('base', 'stylesheet', { height: 200, width: 200 }, { x: 25, y: 0, width: 150, height: 150 }, 'px', content);
- createRectangleTest('rl', 'stylesheet', { height: 200, width: 200 }, { x: 0, y: 25, width: 150, height: 150 }, 'px', content);
- createRectangleTest('lr', 'stylesheet', { height: 200, width: 200 }, { x: 0, y: 25, width: 150, height: 150 }, 'px', content);
- };
-</script>
-</head>
-<body>
- <h1>The following tests should all be large black squares that contain two smaller green squares on the same line.</h1>
- <h2>Standard left right writing mode</h2>
- <div id="base" class="container">
- </div>
- <h2>Vertical Right Left writing mode</h2>
- <div id="rl" class="container vertical-rl"></div>
- <h2>Vertical Left Right writing mode</h2>
- <div id="lr" class="container vertical-lr"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698