mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
41 lines
1023 B
HTML
41 lines
1023 B
HTML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!--
|
||
|
Any copyright is dedicated to the Public Domain.
|
||
|
http://creativecommons.org/publicdomain/zero/1.0/
|
||
|
-->
|
||
|
<!-- Testcase that indicates whether flexbox support is enabled -->
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<style>
|
||
|
body { margin: 0 }
|
||
|
div.mask {
|
||
|
position: absolute;
|
||
|
background: white;
|
||
|
width: -moz-available;
|
||
|
}
|
||
|
div.flex {
|
||
|
display: none;
|
||
|
display: -moz-flex;
|
||
|
}
|
||
|
div.inlineFlex {
|
||
|
display: none;
|
||
|
display: -moz-inline-flex;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>
|
||
|
"display: -moz-flex" is:
|
||
|
<!-- If rendered, this will cover up "disabled" below: -->
|
||
|
<div class="mask flex">enabled</div>
|
||
|
<div>disabled</div>
|
||
|
</p>
|
||
|
<p>
|
||
|
"display: -moz-inline-flex" is:<br/>
|
||
|
<!-- If rendered, this will cover up "disabled" below: -->
|
||
|
<div class="mask inlineFlex">enabled</div>
|
||
|
<div>disabled</div>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|