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

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-flex-flow-002.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-flex-flow-002.html
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-flex-flow-002.html b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-flex-flow-002.html
index de2d1b38e11fb10266b7f847d49d664f2dbf1f98..8ba3abdf4bc39ee818c06bcdc3cf0fba281c1696 100644
--- a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-flex-flow-002.html
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-flex-flow-002.html
@@ -1,8 +1,8 @@
<!DOCTYPE html>
-<!--
+<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
- -->
+-->
<html>
<head>
<title>CSS Test: Testing all the values of the "flex-flow" shorthand property, with 3 flex items in each container</title>
@@ -34,7 +34,7 @@
</style>
</head>
<body>
- <!-- single-line (flex-wrap unspecified): -->
+ <!-- single-line (flex-wrap unspecified): -->
<div class="flexContainer" style="flex-flow: row">
<div>1</div><div>2</div><div>3</div>
</div>
@@ -50,7 +50,7 @@
<div style="clear:both"></div>
- <!-- now using "wrap", after flex-direction: -->
+ <!-- now using "wrap", after flex-direction: -->
<div class="flexContainer" style="flex-flow: row wrap">
<div>1</div><div>2</div><div>3</div>
</div>
@@ -66,7 +66,7 @@
<div style="clear:both"></div>
- <!-- now using "wrap", before flex-direction: -->
+ <!-- now using "wrap", before flex-direction: -->
<div class="flexContainer" style="flex-flow: wrap row">
<div>1</div><div>2</div><div>3</div>
</div>
@@ -82,7 +82,7 @@
<div style="clear:both"></div>
- <!-- now using "wrap-reverse", after flex-direction: -->
+ <!-- now using "wrap-reverse", after flex-direction: -->
<div class="flexContainer" style="flex-flow: row wrap-reverse">
<div>1</div><div>2</div><div>3</div>
</div>
@@ -98,7 +98,7 @@
<div style="clear:both"></div>
- <!-- now using "wrap-reverse", before flex-direction: -->
+ <!-- now using "wrap-reverse", before flex-direction: -->
<div class="flexContainer" style="flex-flow: wrap-reverse row">
<div>1</div><div>2</div><div>3</div>
</div>
@@ -114,7 +114,7 @@
<div style="clear:both"></div>
- <!-- now just specifying flex-wrap (no flex-direction) -->
+ <!-- now just specifying flex-wrap (no flex-direction) -->
<div class="flexContainer" style="flex-flow: wrap">
<div>1</div><div>2</div><div>3</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698