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

Side by Side Diff: LayoutTests/http/tests/shapes/crash-image-changed-during-layout.html

Issue 647953004: Don't delete objects from the floating list during layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated 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
« no previous file with comments | « no previous file | LayoutTests/http/tests/shapes/crash-image-changed-during-layout-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype HTML>
2 crbug.com/423891: Crashes if we remove a float from the
3 floating objects list during layout.
4 This test should not crash.
5 <style>
6 .c29 {
7 src: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAIAAABv85FH AAAABnRSTlMA/wAAAACkwsAdAAAAIUlEQVR4nGP4z8CAC+GUIEXuABhgkTuABEiRw2cmae4EAH05X7xD olNRAAAAAElFTkSuQmCC") format(attr(r));
8 float: left;
9 min-width: 30in;
10 border-top: solid rgba(185, 191, 175, 0.254400) 66em;
11 line-height: 30rem; shape-outside: url("data:image/svg+xml;utf8,<svg xmlns=' http://www.w3.org/2000/svg'> fill='blue'/></svg>");
12 }
13 </style>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17
18 var docElement = document.body;
19 function init() {
20 fespotlight = document.createElementNS("http://www.w3.org/1999/xhtml", "fesp otlight");
21 fespotlight.setAttribute("class", "c29");
22 docElement.appendChild(fespotlight);
23 picture = document.createElementNS("http://www.w3.org/1999/xhtml", "picture" );
24 picture.setAttribute("class", "c29");
25 docElement.appendChild(picture);
26 text = document.createTextNode("If you see this that means the test has PASS ED.");
27 docElement.appendChild(text);
28 }
29 document.addEventListener("DOMContentLoaded", init, false);
30 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/shapes/crash-image-changed-during-layout-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698