From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel.baumann@progress-linux.org>
Date: Sun, 7 Apr 2024 21:33:14 +0200
Subject: Adding upstream version 115.7.0esr.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
---
 .../css/css-flexbox/flexbox-flex-wrap-default.htm  | 38 ++++++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 testing/web-platform/tests/css/css-flexbox/flexbox-flex-wrap-default.htm

(limited to 'testing/web-platform/tests/css/css-flexbox/flexbox-flex-wrap-default.htm')

diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox-flex-wrap-default.htm b/testing/web-platform/tests/css/css-flexbox/flexbox-flex-wrap-default.htm
new file mode 100644
index 0000000000..e3046fd126
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/flexbox-flex-wrap-default.htm
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html>
+	<head>
+		<title>CSS Flexbox Test: Flex-wrap defaults to nowrap</title>
+		<link rel="author" title="Gavin Elster" href="mailto:gavin.elster@me.com">
+		<link rel="reviewer" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact">
+		<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-wrap-property">
+		<link rel="match" href="reference/flexbox-flex-wrap-nowrap-ref.htm" />
+		<meta name="assert" content="Test checks that flex elements default to flex-wrap: nowrap if flex-wrap is not set. With wrapping disabled, the .green flex item should extend outside the bounds of its container, as it is set to flex:none.">
+		<style>
+			.flex-wrapper {
+				display: flex;
+
+				background: green;
+				border-right: 60px solid red;
+
+				width:  60px;
+				height: 120px;
+			}
+
+			.flex-wrapper div{
+				width:  60px;
+				flex: none;
+			}
+
+			.green {
+				background: green;
+			}
+		</style>
+	</head>
+	<body>
+		<p>The test passes if there is a green square and no red.</p>
+		<div class="flex-wrapper">
+			<div></div>
+			<div class="green"></div>
+		</div>
+	</body>
+</html>
-- 
cgit v1.2.3