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

Unified Diff: LayoutTests/fast/block/do-not-strip-anonymous-blocks-when-block-child-becomes-float-and-continuation-on-line.html

Issue 349103002: Revert of Strip anonymous blocks when change in style removes need for them (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years, 6 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/block/do-not-strip-anonymous-blocks-when-block-child-becomes-float-and-continuation-on-line.html
diff --git a/LayoutTests/fast/block/do-not-strip-anonymous-blocks-when-block-child-becomes-float-and-continuation-on-line.html b/LayoutTests/fast/block/do-not-strip-anonymous-blocks-when-block-child-becomes-float-and-continuation-on-line.html
deleted file mode 100644
index 2584780cf07ae082a68bb17569e2abc7be9c4e8e..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/block/do-not-strip-anonymous-blocks-when-block-child-becomes-float-and-continuation-on-line.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<style>
- body {
- margin: 0;
- padding: 0;
- }
- #container {
- position: relative;
- background: #ccc;
- font: 20px Ahem;
- }
- #floater {
- float: none;
- }
-</style>
-<body>
- <p> When a block element becomes a float we should not strip anonymous blocks wrapping its inline siblings if there are other blocks on the
- line. In this test case, the block is wrapped in an anonymous block as part of a continuation.</p>
- <div id="container">
- <span>
- <p>Text</p>
- </span>
- <dd id="floater"></dd>
- </div>
- <script>
- document.body.offsetTop;
- document.getElementById('floater').style.float = 'right';
- </script>
-</body>
-
-

Powered by Google App Engine
This is Rietveld 408576698