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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-image-shape-margin-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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>CSS Reference File</title>
5 <link rel="author" title="Rebecca Hauck" href="rhauck@adobe.com"/>
6 <style type="text/css">
7 #outer {
8 position: relative;
9 width: 100px;
10 height: 250px;
11 }
12 #container {
13 position: absolute;
14 top: 120px;
15 }
16 #shape-ref-div {
17 width: 50px;
18 height: 100px;
19 background-color: rgb(0, 100, 0);
20 }
21 #line {
22 width: 100px;
23 height: 1px;
24 background-color: black;
25 }
26 </style>
27 </head>
28 <body>
29 <p>
30 The test passes if the green rectangle is below the line. There should b e no red.
31 </p>
32 <div id="outer">
33 <div id="container">
34 <div id="line"><div>
35 <div id="shape-ref-div"></div>
36 </div>
37 </div>
38 </body>
39 </html>
40
41
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698