diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/flexbox_object.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/flexbox_object.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/flexbox_object.html b/testing/web-platform/tests/css/css-flexbox/flexbox_object.html new file mode 100644 index 0000000000..701af7b78b --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/flexbox_object.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<title>flexbox | object fallback as a flex item</title> +<link rel="author" href="http://opera.com" title="Opera Software"> +<link rel="help" + href="http://www.w3.org/TR/css-flexbox-1/#justify-content-property"> +<link rel="match" href="flexbox_object-ref.html"> +<style> +div { + background: #ffcc00; + justify-content: space-around; + display: flex; +} +div>* { + background: #3366cc; + margin: 0; +} + +object { + overflow: clip; +} +</style> + +<div> + <object>this is supposed to be a flex item</object> + <p>this is supposed to be a flex item</p> +</div> |