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

Side by Side Diff: LayoutTests/fast/table/display-table-caption-crash.html

Issue 807013004: Merge 187509 "Layout captions in simplifiedNormalFlowLayout for ..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2214/
Patch Set: Created 5 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .caption:after { 3 .caption:after {
4 position:absolute; 4 position:absolute;
5 content: counter(c, lower-armenian) attr(id); 5 content: counter(c, lower-armenian) attr(id);
6 counter-increment: c 895; 6 counter-increment: c 895;
7 } 7 }
8 .caption { -webkit-transform:skew(20deg); } 8 .caption { -webkit-transform:skew(20deg); }
9 .caption:last-of-type { display: table-caption; } 9 .caption:last-of-type { display: table-caption; }
10 .option:nth-of-type(2n+1) { counter-increment: c 578; } 10 .option:nth-of-type(2n+1) { counter-increment: c 578; }
(...skipping 10 matching lines...) Expand all
21 var el = document.createElement('li'); 21 var el = document.createElement('li');
22 el.setAttribute('class', 'caption'); 22 el.setAttribute('class', 'caption');
23 document.body.appendChild(el); 23 document.body.appendChild(el);
24 24
25 document.body.offsetTop; 25 document.body.offsetTop;
26 26
27 var o = document.querySelector('option'); 27 var o = document.querySelector('option');
28 o.setAttribute('class', 'option'); 28 o.setAttribute('class', 'option');
29 } 29 }
30 </script> 30 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/table/caption-position-expected.html ('k') | LayoutTests/fast/table/display-table-caption-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698