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

Unified Diff: LayoutTests/fast/multicol/table-margin-collapse.html

Issue 928413003: Rewrite fast/multicol/table-margin-collapse.html as a reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove useless purpleness. Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/table-margin-collapse-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/table-margin-collapse.html
diff --git a/LayoutTests/fast/multicol/table-margin-collapse.html b/LayoutTests/fast/multicol/table-margin-collapse.html
index be296a8df8f470027e265609c8eaece2cf089ce3..51f96e4ce0a20a72cbc368848dfa187be61537d6 100644
--- a/LayoutTests/fast/multicol/table-margin-collapse.html
+++ b/LayoutTests/fast/multicol/table-margin-collapse.html
@@ -1,22 +1,21 @@
-<html>
-<head>
+<!DOCTYPE html>
<style>
-.columns { -moz-column-count:2; -webkit-column-count:2; column-count:2; column-fill:auto; border:2px solid black; height:300px }
-.block { height:200px; background-color:purple; }
+ .columns { -webkit-column-count:2; -webkit-column-gap:20px; column-fill:auto; border:2px solid black; width:520px; height:300px }
+ .block { height:200px; }
</style>
-</head>
-<body>
-The four rectangles below should both be at the top of their columns. If one is lower than the other, than the test has failed. The pattern in each
-column should be the same (orange/yellow).
+<p>The four rectangles below should both be at the top of their columns. If one is lower than the
+ other, the test has failed. The pattern in each column should be the same (orange/yellow).</p>
<div class="columns">
-<table cellpadding=0 cellspacing=0 border=0 width=100%>
-<tr><td width=50%>
-<div class="block" style="margin-bottom:200px; background-color:orange"></div>
-<div class="block" style="background-color:orange"></div>
-</td>
-<td width=50%>
-<div class="block" style="margin-bottom:200px; background-color:yellow"></div>
-<div class="block" style="background-color:yellow"></div>
-</td></tr>
-</table>
+ <table cellpadding=0 cellspacing=0 border=0 width="100%">
+ <tr>
+ <td width="50%">
+ <div class="block" style="margin-bottom:200px; background-color:orange"></div>
+ <div class="block" style="background-color:orange"></div>
+ </td>
+ <td width="50%">
+ <div class="block" style="margin-bottom:200px; background-color:yellow"></div>
+ <div class="block" style="background-color:yellow"></div>
+ </td>
+ </tr>
+ </table>
</div>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/table-margin-collapse-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698