[AspectRatio] Fix flex-aspect-ratio-01{3,4} tests

These have the same issue that I fixed in https://crrev.com/c/2429543, but
I didn't realize that when I made that CL.

The -014 test is still failing. I will fix that separately.

R=ikilpatrick@chromium.org, mstensho@chromium.org

Bug: 1045668
Change-Id: Ic13c0e44edf7b962b2e28a8d3e6910e8bd841a79
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2441009
Auto-Submit: Christian Biesinger <cbiesinger@chromium.org>
Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org>
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#812326}
diff --git a/css/css-sizing/aspect-ratio/flex-aspect-ratio-013.tentative.html b/css/css-sizing/aspect-ratio/flex-aspect-ratio-013.tentative.html
index 04933e9..6c467e2 100644
--- a/css/css-sizing/aspect-ratio/flex-aspect-ratio-013.tentative.html
+++ b/css/css-sizing/aspect-ratio/flex-aspect-ratio-013.tentative.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<title>CSS aspect-ratio: Row flexbox cross size</title>
+<title>CSS aspect-ratio: Column flexbox cross size</title>
 <link rel="author" title="Google LLC" href="https://www.google.com/">
 <link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio">
 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#line-sizing" title="9.2.3.B">
@@ -7,6 +7,6 @@
 
 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
 
-<div style="display: inline-flex; flex-direction: column; height: 100px;">
+<div style="display: inline-flex; flex-direction: column; flex-wrap: wrap; height: 100px;">
   <div style="background: green; aspect-ratio: 1/1; min-height: 0; height: 50px; flex: 1;"></div>
 </div>
diff --git a/css/css-sizing/aspect-ratio/flex-aspect-ratio-014.tentative.html b/css/css-sizing/aspect-ratio/flex-aspect-ratio-014.tentative.html
index 13d1719b..532776c 100644
--- a/css/css-sizing/aspect-ratio/flex-aspect-ratio-014.tentative.html
+++ b/css/css-sizing/aspect-ratio/flex-aspect-ratio-014.tentative.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<title>CSS aspect-ratio: Row flexbox cross size</title>
+<title>CSS aspect-ratio: Column flexbox cross size</title>
 <link rel="author" title="Google LLC" href="https://www.google.com/">
 <link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio">
 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#line-sizing" title="9.2.3.B">
@@ -7,6 +7,6 @@
 
 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
 
-<div style="display: inline-flex; flex-direction: column; height: 100px;">
+<div style="display: inline-flex; flex-direction: column; flex-wrap: wrap; height: 100px;">
   <div style="background: green; aspect-ratio: 1/1; min-height: 0; flex: 1 1 50px;"></div>
 </div>