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

Side by Side Diff: LayoutTests/fast/table/table-split2.html

Issue 10261009: Merge 113581 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 7 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none; c olor: white;"> 2 <html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none; c olor: white;">
3 <!-- WebKit bug 82630 - Incorrect placement of new child to table when before ch ild parent is not |this|. 3 <!-- WebKit bug 82630 - Incorrect placement of new child to table when before ch ild parent is not |this|.
4 Test passes if you see 'B' wrapped in a table section between ['A'] and ['C ','D']. --> 4 Test passes if you see 'B' wrapped in a table section between ['A'] and ['C ','D']. -->
5 <div id="container"> 5 <div id="container">
6 <div style="display: table-header-group">Header</div> 6 <div style="display: table-header-group">Header</div>
7 <div id="div1">A</div> 7 <div id="div1">A</div>
8 <div id="div2">C</div> 8 <div id="div2">C</div>
9 <div id="div3">D</div> 9 <div id="div3">D</div>
10 <div style="display: table-footer-group">Footer</div> 10 <div style="display: table-footer-group">Footer</div>
11 </div> 11 </div>
12 <script> 12 <script>
13 container = document.getElementById('container'); 13 container = document.getElementById('container');
14 container.style.display = 'table'; 14 container.style.display = 'table';
15 document.body.offsetTop; 15 document.body.offsetTop;
16 section = document.createElement('div'); 16 section = document.createElement('div');
17 section.style.display = 'table-row-group'; 17 section.style.display = 'table-row-group';
18 section.appendChild(document.createTextNode('B')); 18 section.appendChild(document.createTextNode('B'));
19 container.insertBefore(section, document.getElementById('div2')); 19 container.insertBefore(section, document.getElementById('div2'));
20 </script> 20 </script>
21 </html> 21 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/table/table-split-expected.txt ('k') | LayoutTests/fast/table/table-split2-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698