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

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/contiguous-floated-table-vrl-002.xht

Issue 1554863002: Import csswg-test@091ec9158c45705b671df74ba064d1d57753c470 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/contiguous-floated-table-vrl-002.xht
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/float-contiguous-vrl-010.xht b/third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/contiguous-floated-table-vrl-002.xht
similarity index 56%
copy from third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/float-contiguous-vrl-010.xht
copy to third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/contiguous-floated-table-vrl-002.xht
index a2c2c347ba482a8f308740fbc34b414cb84008d7..ac0e310235b2023a2473dce1f234114350ce2d83 100644
--- a/third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/float-contiguous-vrl-010.xht
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-writing-modes-3/contiguous-floated-table-vrl-002.xht
@@ -4,50 +4,74 @@
<head>
- <title>CSS Writing Modes Test: contiguous left-floating boxes with 'writing-mode' set to 'vertical-rl'</title>
+ <title>CSS Writing Modes Test: floated border-collapsing tables (vertical-rl)</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#vertical-layout" title="7.1 Principles of Layout in Vertical Writing Modes" />
<link rel="match" href="../css21/reference/ref-filled-green-100px-square.xht" />
- <meta content="ahem" name="flags" />
- <meta content="This test checks the flow of contiguous left-floated boxes with 'writing-mode' set to 'vertical-rl'." name="assert" />
+ <meta content="" name="flags" />
+ <meta content="This test checks that contiguous floated border-collapsing tables in a 'vertical-rl' context do not overlap." name="assert" />
<style type="text/css"><![CDATA[
+ table
+ {
+ border-collapse: collapse;
+ border-right: red solid 50px;
+ float: left;
+ height: 100px;
+ writing-mode: vertical-rl;
+ }
+
+ td
+ {
+ border-right: green solid 50px;
+ padding: 0px;
+ }
+
div#reference-overlapped-red
{
background-color: red;
height: 100px;
- position: absolute;
+ position: relative;
width: 100px;
z-index: -1;
}
-
- div.floated-left
- {
- color: green;
- float: left;
- font: 20px/1 Ahem; /* computes to 20px/20px */
- writing-mode: vertical-rl;
- }
]]></style>
+
</head>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
- <div id="reference-overlapped-red"></div>
+ <table id="first">
+
+ <tbody>
+
+ <tr>
+ <td></td> <td></td>
+ </tr>
- <div class="floated-left">abcde</div>
+ </tbody>
- <div class="floated-left">fghjk</div>
+ </table>
- <div class="floated-left">lmnor</div>
- <div class="floated-left">rstuv</div>
+ <table id="second">
- <div class="floated-left">wxyzz</div>
+ <tbody>
+
+ <tr>
+ <td></td> <td></td>
+ </tr>
+
+ </tbody>
+
+ </table>
+
+
+ <div id="reference-overlapped-red"></div>
</body>
-</html>
+</html>

Powered by Google App Engine
This is Rietveld 408576698