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

Side by Side Diff: LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash.html

Issue 8478022: Merge 98763 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash-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
1 <style> 1 <style>
2 .c2:after { float: left; content: "A"; } 2 .c2:after { float: left; content: "A"; }
3 </style> 3 </style>
4 PASS, if the script does not cause a crash or ASSERT failure 4 PASS, if the script does not cause a crash or ASSERT failure
5 <script> 5 <script>
6 function endTest(childSpan) { 6 function endTest(childSpan) {
7 childSpan.appendChild(divToInsert); 7 childSpan.appendChild(divToInsert);
8 if (window.layoutTestController) 8 if (window.layoutTestController)
9 layoutTestController.notifyDone(); 9 layoutTestController.notifyDone();
10 } 10 }
11 function startTest() { 11 function startTest() {
12 quoteNode = document.createElement('q'); 12 quoteNode = document.createElement('q');
13 document.documentElement.appendChild(quoteNode); 13 document.documentElement.appendChild(quoteNode);
14 divToInsert = document.createElement('div'); 14 divToInsert = document.createElement('div');
15 parentSpan = document.createElement('span'); 15 parentSpan = document.createElement('span');
16 parentSpan.setAttribute('class', 'c2'); 16 parentSpan.setAttribute('class', 'c2');
17 childSpan = document.createElement('span'); 17 childSpan = document.createElement('span');
18 parentSpan.appendChild(childSpan); 18 parentSpan.appendChild(childSpan);
19 document.documentElement.appendChild(parentSpan); 19 document.documentElement.appendChild(parentSpan);
20 setTimeout('endTest(childSpan);', 50); 20 setTimeout('endTest(childSpan);', 50);
21 if (window.layoutTestController) { 21 if (window.layoutTestController) {
22 layoutTestController.waitUntilDone(); 22 layoutTestController.waitUntilDone();
23 layoutTestController.dumpAsText(); 23 layoutTestController.dumpAsText();
24 } 24 }
25 } 25 }
26 window.onload = startTest; 26 window.onload = startTest;
27 </script> 27 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698