Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 * { line-height: 30rem; shape-outside: url("data:image/svg+xml;utf8,<svg xmlns=' http://www.w3.org/2000/svg'> fill='blue'/></svg>");} | |
|
Julien - ping for review
2014/10/21 19:15:29
Really not a huge fan of using the universal selec
| |
| 7 </style> | |
| 8 <style> | |
|
Julien - ping for review
2014/10/21 19:15:29
And we also need the 2 <style>?
| |
| 9 .c29 { | |
| 10 src: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAIAAABv85FH AAAABnRSTlMA/wAAAACkwsAdAAAAIUlEQVR4nGP4z8CAC+GUIEXuABhgkTuABEiRw2cmae4EAH05X7xD olNRAAAAAElFTkSuQmCC") format(attr(r)); | |
| 11 float: left; | |
| 12 min-width: 30in; | |
| 13 border-top: solid rgba(185, 191, 175, 0.254400) 66em; | |
| 14 } | |
| 15 </style> | |
| 16 <script> | |
| 17 if (window.testRunner) | |
| 18 testRunner.dumpAsText(); | |
| 19 | |
| 20 var docElement = document.body; | |
| 21 function init() { | |
| 22 fespotlight = document.createElementNS("http://www.w3.org/1999/xhtml", "fesp otlight"); | |
| 23 fespotlight.setAttribute("class", "c29"); | |
| 24 docElement.appendChild(fespotlight); | |
| 25 picture = document.createElementNS("http://www.w3.org/1999/xhtml", "picture" ); | |
| 26 picture.setAttribute("class", "c29"); | |
| 27 docElement.appendChild(picture); | |
| 28 text = document.createTextNode("This test should not crash. This test should not crash."); | |
|
Julien - ping for review
2014/10/21 19:15:29
That's a lot of "This test should not crash." (3 t
| |
| 29 docElement.appendChild(text); | |
| 30 } | |
| 31 document.addEventListener("DOMContentLoaded", init, false); | |
| 32 </script> | |
| OLD | NEW |