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

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

Issue 804383002: Layout captions in simplifiedNormalFlowLayout for tables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .caption:after {
4 position:absolute;
5 content: counter(c, lower-armenian) attr(id);
6 counter-increment: c 895;
7 }
8 .caption { -webkit-transform:skew(20deg); }
9 .caption:last-of-type { display: table-caption; }
10 .option:nth-of-type(2n+1) { counter-increment: c 578; }
11 </style>
12
13 This test passes if it does not CRASH.
14 <option>
15
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19
20 onload = function() {
21 var el = document.createElement('li');
22 el.setAttribute('class', 'caption');
23 document.body.appendChild(el);
24
25 document.body.offsetTop;
26
27 var o = document.querySelector('option');
28 o.setAttribute('class', 'option');
29 }
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