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

Side by Side Diff: LayoutTests/fast/table/dynamic-caption-add-remove-before-child.xhtml

Issue 6913011: Merge 85355 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/742/
Patch Set: Created 9 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 <html xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <body> 2 <body>
3 <table id="table"> 3 <table id="table">
4 <caption id="c1">PASS: Text in caption 1</caption> 4 <caption id="c1">PASS: Text in caption 1</caption>
5 </table> 5 </table>
6 <script> 6 <script>
7 document.body.offsetLeft; 7 document.body.offsetLeft;
8 var caption = document.createElement('caption'); 8 var caption = document.createElement('caption');
9 caption.appendChild(document.createTextNode('FAIL: Dynamically added caption')); 9 caption.appendChild(document.createTextNode('FAIL: Dynamically added caption'));
10 10
11 var table = document.getElementById('table'); 11 var table = document.getElementById('table');
12 var c1 = document.getElementById('c1'); 12 var c1 = document.getElementById('c1');
13 table.insertBefore(caption, c1); 13 table.insertBefore(caption, c1);
14 document.body.offsetTop; 14 document.body.offsetTop;
15 table.removeChild(caption); 15 table.removeChild(caption);
16 </script> 16 </script>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/table/dynamic-caption-add-before-child.xhtml ('k') | LayoutTests/fast/table/multiple-captions-crash.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698