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

Side by Side Diff: LayoutTests/fast/table/dynamic-caption-add-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
« no previous file with comments | « no previous file | LayoutTests/fast/table/dynamic-caption-add-remove-before-child.xhtml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">FAIL: Text in caption 1</caption> 4 <caption id="c1">FAIL: Text in caption 1</caption>
5 <caption id="c2" style="opacity: 0.5">FAIL: Text in caption 2</caption> 5 <caption id="c2" style="opacity: 0.5">FAIL: Text in caption 2</caption>
6 <caption id="c3" style="opacity: 0.2">FAIL: Text in caption 3</caption> 6 <caption id="c3" style="opacity: 0.2">FAIL: Text in caption 3</caption>
7 <caption id="c4" style="opacity: 0">FAIL: Text in caption 4</caption> 7 <caption id="c4" style="opacity: 0">FAIL: Text in caption 4</caption>
8 </table> 8 </table>
9 <script> 9 <script>
10 var caption = document.createElement('caption'); 10 var caption = document.createElement('caption');
11 caption.appendChild(document.createTextNode('PASS: Dynamically added caption')); 11 caption.appendChild(document.createTextNode('PASS: Dynamically added caption'));
12 12
13 var table = document.getElementById('table'); 13 var table = document.getElementById('table');
14 var c1 = document.getElementById('c1'); 14 var c1 = document.getElementById('c1');
15 table.insertBefore(caption, c1); 15 table.insertBefore(caption, c1);
16 document.body.offsetTop; 16 document.body.offsetTop;
17 </script> 17 </script>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/table/dynamic-caption-add-remove-before-child.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698