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

Unified Diff: LayoutTests/csswg/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html

Issue 23866007: Fix painting order for floats with shape-outside (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/csswg/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
diff --git a/LayoutTests/csswg/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html b/LayoutTests/csswg/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
index 6feec2c3200e489b78f18a7065d78a2fc5cac78a..04fd6957610253141124e1862a3766fe4f512445 100644
--- a/LayoutTests/csswg/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
+++ b/LayoutTests/csswg/submitted/shapes/shape-outside/shape-outside-floats-rounded-rectangle-004.html
@@ -1,29 +1,30 @@
<!DOCTYPE html>
<title>CSS Test: rounded rectangle shape-outside on floats with clamped radii values</title>
+<link rel="author" title="Adobe" href="http://html.adobe.com/">
<link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com">
<link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property">
<link rel="match" href="shape-outside-floats-rounded-rectangle-004-ref.html">
<meta name="flags" content="ahem">
<style>
.container {
- font: 10px/1 Ahem, sans-serif;
- width: 80px;
- height: 40px;
- border: 1px solid black;
+ font: 20px/1 Ahem, sans-serif;
+ line-height: 20px;
+ width: 160px;
+ height: 80px;
margin: 5px;
}
.float {
float: left;
- width: 40px;
- height: 40px;
+ width: 80px;
+ height: 80px;
border: 1px solid blue;
border-radius: 50%;
}
.fixed-units {
- -webkit-shape-outside: rectangle(0px, 0px, 40px, 40px, 40px, 40px);
+ -webkit-shape-outside: rectangle(0px, 0px, 80px, 80px, 80px, 80px);
}
.different-units {
- -webkit-shape-outside: rectangle(0px, 0px, 40px, 40px, 100%, 100%);
+ -webkit-shape-outside: rectangle(0px, 0px, 80px, 80px, 100%, 100%);
}
.relative-units {
-webkit-shape-outside: rectangle(0px, 0px, 100%, 100%, 700em, 700em);

Powered by Google App Engine
This is Rietveld 408576698