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

Side by Side Diff: LayoutTests/fast/css-generated-content/remove-div-from-flexible-box-with-floating-after-content-crash.html

Issue 9374042: Merge 106744 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 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
OLDNEW
1 <style> 1 <style>
2 .c1::after { float: left; content: open-quote; } 2 .c1::after { float: left; content: open-quote; }
3 .c1:first-letter { display: table-column; } 3 .c1:first-letter { display: table-column; }
4 .c1[class~="c1"] { display: -webkit-inline-box; } 4 .c1[class~="c1"] { display: -webkit-inline-box; }
5 </style> 5 </style>
6 <script> 6 <script>
7 var parentDiv = document.createElement('div'); 7 var parentDiv = document.createElement('div');
8 var childDiv = document.createElement('div'); 8 var childDiv = document.createElement('div');
9 9
10 parentDiv.setAttribute('class', 'c1'); 10 parentDiv.setAttribute('class', 'c1');
11 document.documentElement.appendChild(parentDiv); 11 document.documentElement.appendChild(parentDiv);
12 parentDiv.appendChild(childDiv); 12 parentDiv.appendChild(childDiv);
13 parentDiv.appendChild(document.createTextNode('PASS if no exception or crash')); 13 parentDiv.appendChild(document.createTextNode('PASS if no exception or crash'));
14 document.documentElement.offsetHeight; // forces a layout 14 document.documentElement.offsetHeight; // forces a layout
15 parentDiv.removeChild(childDiv); 15 parentDiv.removeChild(childDiv);
16 if (window.layoutTestController) 16 if (window.layoutTestController)
17 layoutTestController.dumpAsText(); 17 layoutTestController.dumpAsText();
18 </script> 18 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/remove-div-from-flexible-box-with-floating-after-content-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698