| Index: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-with-pseudo-elements-003.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-with-pseudo-elements-003.html b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-with-pseudo-elements-003.html
|
| index f50f943e048e3fb7ba00fe65a72e5791bb772b69..46cd10ac7cf961c16fa996636f88e0d431d0d430 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-with-pseudo-elements-003.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-with-pseudo-elements-003.html
|
| @@ -7,10 +7,9 @@
|
| flex container, specifically when they've got display:table-row or
|
| table-cell.
|
|
|
| - Note that we *don't* treat the table row or cell frames themselves as flex
|
| - items, because they get wrapped in an anonymous table box, and *that* is
|
| - the flex item. So, "align-self" and "order" have no effect on the
|
| - row/cell. -->
|
| + The table-row / table-cell 'display' values should be blockified, and the
|
| + pseudo-elements should be treated as flex items. (They should not get
|
| + wrapped in an anonymous table box.) -->
|
| <html>
|
| <head>
|
| <title>CSS Test: Testing that generated content nodes with table-part display types are wrapped with an anonymous table, which forms a flex item</title>
|
| @@ -32,15 +31,19 @@
|
| display: table-row;
|
| content: 'b';
|
| background: yellow;
|
| - align-self: center; /* should have no effect */
|
| - order: 1; /* should have no effect */
|
| + /* If these "align-self" & "order" properties impact the rendering (as
|
| + they should), that verifies we're being treated as a flex item. */
|
| + align-self: center;
|
| + order: 1;
|
| }
|
| div.withAfter::after {
|
| display: table-cell;
|
| content: 'a';
|
| background: lightblue;
|
| - align-self: center; /* should have no effect */
|
| - order: -1; /* should have no effect */
|
| + /* If these "align-self" & "order" properties impact the rendering (as
|
| + they should), that verifies we're being treated as a flex item. */
|
| + align-self: center;
|
| + order: -1;
|
| }
|
| </style>
|
| </head>
|
|
|