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

Side by Side Diff: LayoutTests/fast/css/first-letter-inline-flow-split-crash.html

Issue 9014025: Merge 101584 - Crash from first letter text fragments having flows split (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/fast/css/first-letter-inline-flow-split-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 .spanStyle { float: inherit; } 2 .spanStyle { float: inherit; }
3 .inlineFL::first-letter { visibility: visible; } 3 .inlineFL::first-letter { visibility: visible; }
4 .floatFL { float: right; } 4 .floatFL { float: right; }
5 .floatFL::first-letter { position: absolute; content: 'A'; } 5 .floatFL::first-letter { position: absolute; content: 'A'; }
6 </style> 6 </style>
7 PASS, if no exception or crash observed 7 PASS, if no exception or crash observed
8 <script> 8 <script>
9 parentDiv = document.createElement('div'); 9 parentDiv = document.createElement('div');
10 childSpan = document.createElement('span'); 10 childSpan = document.createElement('span');
(...skipping 21 matching lines...) Expand all
32 parentDiv.appendChild(textNode); 32 parentDiv.appendChild(textNode);
33 childSpan.appendChild(childDiv); 33 childSpan.appendChild(childDiv);
34 setTimeout("changeClass()", 10); 34 setTimeout("changeClass()", 10);
35 if (window.layoutTestController) { 35 if (window.layoutTestController) {
36 layoutTestController.waitUntilDone(); 36 layoutTestController.waitUntilDone();
37 layoutTestController.dumpAsText(); 37 layoutTestController.dumpAsText();
38 } 38 }
39 } 39 }
40 window.onload = runTest; 40 window.onload = runTest;
41 </script> 41 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/first-letter-inline-flow-split-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698