| Index: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-justify-content-horiz-003.xhtml
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-justify-content-horiz-003.xhtml b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-justify-content-horiz-003.xhtml
|
| index 4957fa95d56ba6d8ee524036c7bb4d03576dda34..bc97825225cd93cee0a023a2dc3f2db12fb08a8f 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-justify-content-horiz-003.xhtml
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-justify-content-horiz-003.xhtml
|
| @@ -1,9 +1,9 @@
|
| <?xml version="1.0" encoding="UTF-8"?>
|
| -<!--
|
| +<!--
|
| Any copyright is dedicated to the Public Domain.
|
| http://creativecommons.org/publicdomain/zero/1.0/
|
| - -->
|
| -<!-- Testcase with a variety of 'display: flex' examples testing each
|
| +-->
|
| +<!-- Testcase with a variety of 'display: flex' examples testing each
|
| possible value of the 'justify-content' property, and with each
|
| individual flex item being wider than the flexbox itself (so that
|
| there isn't any packing space available).
|
| @@ -11,7 +11,7 @@
|
| (right) side.
|
| * For 'flex-end', we should overflow on the start (left) side.
|
| * For 'center'/'space-around', we should overflow equally on both sides.
|
| - -->
|
| +-->
|
| <html xmlns="http://www.w3.org/1999/xhtml">
|
| <head>
|
| <title>CSS Test: Testing 'justify-content' in a horizontal flex container, and its effects on flex items that overflow</title>
|
| @@ -44,7 +44,7 @@
|
| </head>
|
| <body>
|
|
|
| - <!-- default (start) -->
|
| + <!-- default (start) -->
|
| <div class="flexbox">
|
| <div class="a"/>
|
| </div>
|
| @@ -55,7 +55,7 @@
|
| <div class="a"/><div class="b"/><div class="c"/>
|
| </div>
|
|
|
| - <!-- flex-start -->
|
| + <!-- flex-start -->
|
| <div class="flexbox" style="justify-content: flex-start">
|
| <div class="a"/>
|
| </div>
|
| @@ -66,7 +66,7 @@
|
| <div class="a"/><div class="b"/><div class="c"/>
|
| </div>
|
|
|
| - <!-- flex-end -->
|
| + <!-- flex-end -->
|
| <div class="flexbox" style="justify-content: flex-end">
|
| <div class="a"/>
|
| </div>
|
| @@ -77,7 +77,7 @@
|
| <div class="a"/><div class="b"/><div class="c"/>
|
| </div>
|
|
|
| - <!-- center -->
|
| + <!-- center -->
|
| <div class="flexbox" style="justify-content: center">
|
| <div class="a"/>
|
| </div>
|
| @@ -88,7 +88,7 @@
|
| <div class="a"/><div class="b"/><div class="c"/>
|
| </div>
|
|
|
| - <!-- space-between -->
|
| + <!-- space-between -->
|
| <div class="flexbox" style="justify-content: space-between">
|
| <div class="a"/>
|
| </div>
|
| @@ -99,7 +99,7 @@
|
| <div class="a"/><div class="b"/><div class="c"/>
|
| </div>
|
|
|
| - <!-- space-around -->
|
| + <!-- space-around -->
|
| <div class="flexbox" style="justify-content: space-around">
|
| <div class="a"/>
|
| </div>
|
|
|