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

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-break-request-vert-001b.html

Issue 1705363002: Import Mozilla's flexbox tests from csswg-test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add test expectations for mac-specific failures Created 4 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
Index: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-break-request-vert-001b.html
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-break-request-vert-001b.html b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-break-request-vert-001b.html
new file mode 100644
index 0000000000000000000000000000000000000000..b4931582c958509e9aa263276e7f329a1d1ea24d
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-break-request-vert-001b.html
@@ -0,0 +1,109 @@
+<!DOCTYPE html>
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+ -->
+<html>
+<head>
+ <title>CSS Test: Testing page-break-after in vertical multi-line flex containers</title>
+ <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
+ <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#algo-line-break">
+ <link rel="match" href="flexbox-break-request-vert-001-ref.html">
+ <meta charset="utf-8">
+ <style>
+ div.flexbox {
+ display: flex;
+ flex-direction: column;
+ flex-wrap: wrap;
+ border: 1px dashed black;
+ width: 20px;
+ height: 60px;
+ margin: 2px;
+ float: left;
+ }
+ div.item {
+ height: 28px;
+ border: 1px solid blue;
+ background: lightblue;
+ }
+ </style>
+</head>
+<body>
+ <!-- page-break-after specified on first (and only) item, at a point where
+ we're already "breaking" (the end): -->
+ <!-- * With 'page-break-after: auto, avoid' (not requesting a break): -->
+ <div class="flexbox">
+ <div class="item" style="page-break-after: auto"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item" style="page-break-after: avoid"></div>
+ </div>
+ <!-- * With 'page-break-after: always, left, right' (requesting a break): -->
+ <div class="flexbox">
+ <div class="item" style="page-break-after: always"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item" style="page-break-after: left"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item" style="page-break-after: right"></div>
+ </div>
+ <div style="clear: both"></div>
+
+ <!-- page-break-after specified on first item, at a point where breaking
+ would otherwise be unnecessary: -->
+ <!-- * With 'page-break-after: auto, avoid' (not requesting a break): -->
+ <div class="flexbox">
+ <div class="item" style="page-break-after: auto"></div>
+ <div class="item"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item" style="page-break-after: avoid"></div>
+ <div class="item"></div>
+ </div>
+ <!-- * With 'page-break-after: always, left, right' (requesting a break): -->
+ <div class="flexbox">
+ <div class="item" style="page-break-after: always"></div>
+ <div class="item"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item" style="page-break-after: left"></div>
+ <div class="item"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item" style="page-break-after: right"></div>
+ <div class="item"></div>
+ </div>
+ <div style="clear: both"></div>
+
+ <!-- page-break-after specified on second item, at a point where breaking
+ is already necessary: -->
+ <!-- * With 'page-break-after: auto, avoid' (not requesting a break): -->
+ <div class="flexbox">
+ <div class="item"></div>
+ <div class="item" style="page-break-after: auto"></div>
+ <div class="item"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item"></div>
+ <div class="item" style="page-break-after: avoid"></div>
+ <div class="item"></div>
+ </div>
+ <!-- * With 'page-break-after: always, left, right' (requesting a break): -->
+ <div class="flexbox">
+ <div class="item"></div>
+ <div class="item" style="page-break-after: always"></div>
+ <div class="item"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item"></div>
+ <div class="item" style="page-break-after: left"></div>
+ <div class="item"></div>
+ </div>
+ <div class="flexbox">
+ <div class="item"></div>
+ <div class="item" style="page-break-after: right"></div>
+ <div class="item"></div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698