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

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-min-width-auto-002a.html

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-min-width-auto-002a.html
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-min-width-auto-002a.html b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-min-width-auto-002a.html
index a31e3675c0638ddd1ac4f78b4e11be46635a777a..fe60255c937bc579b953c59b6b9ad596cab07daf 100644
--- a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-min-width-auto-002a.html
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-min-width-auto-002a.html
@@ -1,8 +1,8 @@
<!DOCTYPE html>
-<!--
+<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
- -->
+-->
<html>
<head>
<meta charset="utf-8">
@@ -10,7 +10,7 @@
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#min-size-auto">
<link rel="match" href="flexbox-min-width-auto-002-ref.html">
-<!--
+<!--
This testcase tests the used value of "min-width:auto" (the property's
initial value) on flex items in a horizontal flex container.
@@ -27,7 +27,7 @@
This test checks for situations where we should resolve the min-width as
(d) above, with "constraints in the other dimension" being "height".
- -->
+-->
<style>
.flexbox {
display: flex;
@@ -44,22 +44,22 @@
</style>
</head>
<body>
- <!-- Check for min-width:auto resolving correctly when the smallest
- candidate value is: -->
+ <!-- Check for min-width:auto resolving correctly when the smallest
+ candidate value is: -->
- <!-- *** (d) (with intrinsic aspect ratio) The width derived from ratio
- and constraints in the other dimension *** -->
- <!-- First, with a larger candidate 'flex-basis' value (from 'width') -->
+ <!-- *** (d) (with intrinsic aspect ratio) The width derived from ratio
+ and constraints in the other dimension *** -->
+ <!-- First, with a larger candidate 'flex-basis' value (from 'width') -->
<div class="flexbox">
<img style="width: 100px" src="support/solidblue.png" alt="blue square">
</div>
- <!-- ...and now with a larger explicit 'flex-basis' value (which shouldn't
- be considered for 'min-width:auto' anyway) -->
+ <!-- ...and now with a larger explicit 'flex-basis' value (which shouldn't
+ be considered for 'min-width:auto' anyway) -->
<div class="flexbox">
<img style="flex-basis: 100px" src="support/solidblue.png" alt="blue square">
</div>
- <!-- ...and now with a smaller explicit 'flex-basis' value (which shouldn't
- be considered for 'min-width:auto' anyway) -->
+ <!-- ...and now with a smaller explicit 'flex-basis' value (which shouldn't
+ be considered for 'min-width:auto' anyway) -->
<div class="flexbox">
<img style="flex-basis: 10px" src="support/solidblue.png" alt="blue square">
</div>

Powered by Google App Engine
This is Rietveld 408576698