diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-flexbox/reference')
2 files changed, 24 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-flexbox/reference/flexbox-with-multi-column-property-ref.html b/tests/wpt/web-platform-tests/css/css-flexbox/reference/flexbox-with-multi-column-property-ref.html new file mode 100644 index 00000000000..fbb8fcda3e1 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-flexbox/reference/flexbox-with-multi-column-property-ref.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<link href="resources/flexbox.css" rel="stylesheet"> +<style> +.flexbox, .inline-flexbox { + width: 20em; + font-kerning: none; +} +</style> +<div class="flexbox"> +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD +</div> + +<div class="inline-flexbox"> +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD +</div> diff --git a/tests/wpt/web-platform-tests/css/css-flexbox/reference/flexitem-stretch-range-ref.html b/tests/wpt/web-platform-tests/css/css-flexbox/reference/flexitem-stretch-range-ref.html new file mode 100644 index 00000000000..e941a157be0 --- /dev/null +++ b/tests/wpt/web-platform-tests/css/css-flexbox/reference/flexitem-stretch-range-ref.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> +<body> +<p>When stretching a range input, the thumb should be centered vertically.</p> +<div style="height: 200px;"> + <input type="range" style="width: 100%; height: 100%; margin: 0;"> +</div> +</body> +</html> |