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

Side by Side Diff: LayoutTests/fast/block/float/float-mark-descendants-for-layout-crash-2-expected.html

Issue 195363007: Avoid unnecessary descents into nested boxes with floats. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Trying again Created 6 years, 8 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
(Empty)
1 <style>
2 .c8 { display: -webkit-inline-flexbox; float: left; }
3 .c8:nth-last-of-type(2n+1) { vertical-align: bottom; height: 65536px; }
4 </style>
5 <script>
6 var nodes = Array();
7 function boom() {
8 try { nodes[0] = document.createElement('em'); } catch(e) {}
9 try { nodes[8] = document.createElement('mark'); } catch(e) {}
10 try { nodes[8].setAttribute('class', 'c8'); } catch(e) {}
11 try { document.documentElement.appendChild(nodes[8]); } catch(e) {}
12 try { nodes[63] = document.createElement('blockquote'); } catch(e) {}
13 try { document.documentElement.appendChild(nodes[63]); } catch(e) {}
14 try { nodes[66] = document.createElement('i'); } catch(e) {}
15 try { nodes[66].setAttribute('class', 'c8'); } catch(e) {}
16 try { document.documentElement.appendChild(nodes[66]); } catch(e) {}
17 setTimeout("try { nodes[8].setAttribute('class', 'c10'); } catch(e) {}", 148 );
18 setTimeout('try { nodes[0].appendChild(nodes[66]); } catch(e) {}', 212);
19 }
20 window.onload = boom;
21 </script>
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698