| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>CSS Display: Parsing display with valid values</title> |
| <link rel="author" title="Ethan Jimenez" href="mailto:ethavar@microsoft.com"> |
| <link rel="help" href="https://tabatkins.github.io/specs/css-masonry/#masonry-containers"> |
| <meta name="assert" content="display supports the new values 'masonry | inline-masonry'."> |
| <script src="/resources/testharness.js"></script> |
| <script src="/resources/testharnessreport.js"></script> |
| <script src="/css/support/parsing-testcommon.js"></script> |
| </head> |
| <body> |
| <script> |
| // https://tabatkins.github.io/specs/css-masonry/#masonry-containers |
| test_valid_value("display", "masonry"); |
| test_valid_value("display", "inline-masonry"); |
| </script> |
| </body> |
| </html> |