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

Unified Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-dynamic-shape-image-threshold-expected.html

Issue 635533003: Don't delete nodes in the float interval tree while traversing it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add correct png! Created 6 years, 2 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-outside-floats/shape-outside-dynamic-shape-image-threshold-expected.html
diff --git a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-dynamic-shape-image-threshold-expected.html b/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-dynamic-shape-image-threshold-expected.html
deleted file mode 100644
index 1054ea3afc8c51c38d937e3836ed1db7e83881f1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-outside-floats/shape-outside-dynamic-shape-image-threshold-expected.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
- .container {
- width: 200px;
- height: 200px;
- overflow-wrap: break-word;
- border: 2px solid blue;
- font: 50px/1 Ahem, sans-serif;
- color: green;
- overflow: hidden;
- }
- .shape {
- float: left;
- position: relative;
- width: 100px;
- height: 100px;
- shape-outside: url('../resources/svg-shape-002.svg');
- }
- .shape::before {
- position: absolute;
- display: block;
- top: 0; left: 0;
- width: 100px;
- height: 100px;
- background-color: blue;
- content: ' ';
- }
-
- .threshold25 {
- shape-image-threshold: 0.26;
- }
- .threshold25::before {
- width: 75px;
- }
-
- .threshold75 {
- shape-image-threshold: 0.76;
- }
- .threshold75::before {
- width: 25px;
- }
-</style>
-</head>
-<body>
- <p>When shape-image-threshold is modified dynamically, content affected by the shape's contour should relayout. For each test, you should see green blocks separated by white space, wrapping around a blue rectangle in the upper left. This test requires the Ahem font.</p>
-
- <p>Setting shape-image-threshold with no prior entry</p>
- <div id='add-shape-image-threshold' class='container'><div class='shape threshold25'></div>x x x x x x x x x x</div>
-
- <p>Setting shape-image-threshold with a prior entry</p>
- <div id='change-shape-image-threshold' class='container'><div class='shape threshold75'></div>x x x x x x x x x x</div>
-
- <p>Removing shape-image-threshold with a prior entry</p>
- <div id='remove-shape-image-threshold' class='container'><div class='shape'></div>x x x x x x x x x x</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698