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

Side by Side Diff: LayoutTests/fast/block/margin-collapse/self-collapsing-block-with-overflow-hidden-and-float-child.html

Issue 12039022: Merge r139337 to M25. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1364/
Patch Set: Created 7 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
OLDNEW
1 <!DOCTYPE html5> 1 <!DOCTYPE html5>
2 <html> 2 <html>
3 <style> 3 <style>
4 .outside { 4 .outside {
5 margin-top: 20px; 5 margin-top: 20px;
6 overflow: hidden; 6 overflow: hidden;
7 background: #ddd; 7 background: #ddd;
8 } 8 }
9 9
10 .inside { 10 .inside {
(...skipping 14 matching lines...) Expand all
25 <div id="second" class="inside"></div> 25 <div id="second" class="inside"></div>
26 </div> 26 </div>
27 <div id="console"></div> 27 <div id="console"></div>
28 <script> 28 <script>
29 if (document.getElementById("first").offsetTop == document.getElementById("s econd").offsetTop) 29 if (document.getElementById("first").offsetTop == document.getElementById("s econd").offsetTop)
30 document.getElementById("console").innerText = "PASSED"; 30 document.getElementById("console").innerText = "PASSED";
31 else 31 else
32 document.getElementById("console").innerText = "FAILED"; 32 document.getElementById("console").innerText = "FAILED";
33 </script> 33 </script>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698