Index: LayoutTests/fast/forms/button-set-display-flex-justifyContent-center-expected.html |
diff --git a/LayoutTests/fast/forms/button-set-display-flex-justifyContent-center-expected.html b/LayoutTests/fast/forms/button-set-display-flex-justifyContent-center-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e057c65d539b38cbe79279c4d0782e14ff50342c |
--- /dev/null |
+++ b/LayoutTests/fast/forms/button-set-display-flex-justifyContent-center-expected.html |
@@ -0,0 +1,24 @@ |
+<!doctype html> |
+<html> |
+<head> |
+<style> |
+div { |
+ font-family: sans-serif; |
+ font-size: initial; |
+ width: 300px; |
+} |
+ |
+.flex { |
+ display: flex; |
+} |
+ |
+.flex-center { |
+ justify-content: center; |
+} |
+</style> |
+</head> |
+<body> |
+<h4>Test for BUG=344733: Centering text inside a button set to display flex and justify-content: center is impossible</h4> |
+<div class="flex flex-center">text with justify-content: center</div> |
+</body> |
+</html> |