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

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001.xhtml

Issue 2104493003: Import csswg-test@0589ea025a684e31742740ca3b599230bcc25e5d (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update TestExpectations, delete background Created 4 years, 6 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/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001.xhtml
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001.xhtml b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001.xhtml
index 8ea82dfcac0b6396eb56bf804b44bdab4db5b4dd..00e1a54ffa198298cd1500343265a2a8fa6c5e93 100644
--- a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001.xhtml
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-table-fixup-001.xhtml
@@ -1,15 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!--
+<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
- -->
-<!--
+-->
+<!--
Testcase with table parts inside of a flex container, which should *not*
trigger table-fixup. We use justify-content:space-between to stick packing
space between flex items, so that we can verify that e.g. a contiguous
run of <td>s will each be blockified & form its own flex item (instead of
being aggregated into a single table & single flex item).
- -->
+-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS Test: Testing that table cells in a flex container get blockified and each form their own flex item</title>
@@ -47,18 +47,18 @@
</style>
</head>
<body>
- <!-- The adjacent table-parts in each example below should *not* be
- grouped into the same flex item. -->
- <!-- 2 adjacent table cells -->
+ <!-- The adjacent table-parts in each example below should *not* be
+ grouped into the same flex item. -->
+ <!-- 2 adjacent table cells -->
<div class="flexbox"
><td class="a">cell1</td><td class="b">cell2</td></div>
- <!-- Table cell followed by tbody -->
+ <!-- Table cell followed by tbody -->
<div class="flexbox"
><td class="a">cell1</td><tbody class="b">t</tbody></div>
- <!-- Empty table cell (ends up occupying 2px of width), followed by
- nonempty table cell. -->
+ <!-- Empty table cell (ends up occupying 2px of width), followed by
+ nonempty table cell.-->
<div class="flexbox"
><td></td><td class="b">cell1</td></div>
</body>

Powered by Google App Engine
This is Rietveld 408576698