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

Side by Side Diff: LayoutTests/fast/css-generated-content/resources/positioned-div-with-floating-after-content-crash-frame1.html

Issue 9371039: Merge 106150 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 years, 10 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 <style> 1 <style>
2 .c1 { display: table; } 2 .c1 { display: table; }
3 .c1::after { position: fixed; content: counter(section); } 3 .c1::after { position: fixed; content: counter(section); }
4 .c2 { display: table-caption; float: left; } 4 .c2 { display: table-caption; float: left; }
5 </style> 5 </style>
6 <script> 6 <script>
7 var node = document.createElement('q'); 7 var node = document.createElement('q');
8 8
9 function changeQClass() { 9 function changeQClass() {
10 node.setAttribute('class', 'c1'); 10 node.setAttribute('class', 'c1');
(...skipping 11 matching lines...) Expand all
22 } 22 }
23 23
24 function runTest() { 24 function runTest() {
25 setTimeout("changeQClass();", 10); 25 setTimeout("changeQClass();", 10);
26 } 26 }
27 window.onload = runTest; 27 window.onload = runTest;
28 </script> 28 </script>
29 <div class="c2"><textarea></textarea></div> 29 <div class="c2"><textarea></textarea></div>
30 <div id="positionedDiv" class="c1">FAIL</div> 30 <div id="positionedDiv" class="c1">FAIL</div>
31 <div class="c2"></div> 31 <div class="c2"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698