diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/grid-model/reference')
7 files changed, 103 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-horizontal-scrollbar.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-horizontal-scrollbar.html new file mode 100644 index 0000000000..ba8335873d --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-horizontal-scrollbar.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<title>Reference</title> +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com"> +<style> + .box { + width: 100px; + height: 100px; + background-color: grey; + overflow: auto; + } + .item { + width: 150px; + height: 50px; + } +</style> +<p>The test passes if you see a grey square below and only the horizontal scrollbar is visible.</p> +<div class="box"><div class="item"></div></div> diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html new file mode 100644 index 0000000000..61a346fe36 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<title>Reference</title> +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com"> +<style> + .box { + width: 100px; + height: 100px; + background-color: grey; + overflow: auto; + } + .item { + width: 150px; + height: 150px; + } +</style> +<p>The test passes if you see a grey square below and both scrollbars are visible.</p> +<div class="box"><div class="item"></div></div> diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-vertical-scrollbar.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-vertical-scrollbar.html new file mode 100644 index 0000000000..59fff1b955 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box-with-vertical-scrollbar.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<title>Reference</title> +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com"> +<style> + .box { + width: 100px; + height: 100px; + background-color: grey; + overflow: auto; + } + .item { + width: 50px; + height: 150px; + } +</style> +<p>The test passes if you see a grey square below and only the vertical scrollbar is visible.</p> +<div class="box"><div class="item"></div></div> diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box.html new file mode 100644 index 0000000000..0592f6d2ce --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/100x100-grey-box.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<title>Reference</title> +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com"> +<style> + .box { + width: 100px; + height: 100px; + background-color: grey; + } +</style> +<p>The test passes if you see a grey square below without any scrollbar.</p> +<div class="box"></div> diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/column-property-should-not-apply-on-grid-container-001-ref.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/column-property-should-not-apply-on-grid-container-001-ref.html new file mode 100644 index 0000000000..154cf02290 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/column-property-should-not-apply-on-grid-container-001-ref.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<link href="/css/support/grid.css" rel="stylesheet"> +<style> +.grid, .inline-grid +{ + width: 20em; + font-kerning: none; +} +</style> + +<body> + +<div class='grid'> +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD +</div> + +<div class='inline-grid'> +AAAAAAAAAA BBBBBBBBBB CCCCCCCCCC DDDDDDDDDD +</div> + +</body> +</html> diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/grid-layout-stale-001-ref.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/grid-layout-stale-001-ref.html new file mode 100644 index 0000000000..3ade075c99 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/grid-layout-stale-001-ref.html @@ -0,0 +1,13 @@ +<!doctype html> +<title>CSS Grid: Do not add non-children of the grid into the grid container</title> + +<style> + embed { position: absolute; } + .c1 { animation-delay: 45762s; } +</style> + +<p>This test passes if it doesn't crash and it matches the reference.</p> +<div style="display: grid;"> + <embed type="something-not-js"> +</div> +<highlight class="c1"></highlight> diff --git a/testing/web-platform/tests/css/css-grid/grid-model/reference/grid-layout-stale-002-ref.html b/testing/web-platform/tests/css/css-grid/grid-model/reference/grid-layout-stale-002-ref.html new file mode 100644 index 0000000000..5d4d996106 --- /dev/null +++ b/testing/web-platform/tests/css/css-grid/grid-model/reference/grid-layout-stale-002-ref.html @@ -0,0 +1,4 @@ +<!DOCTYPE html> +<title>CSS Grid: Do not leave stale pointers into the grid container</title> +<p>This test passes if it doesn't crash and it matches the reference.</p> +<span style="display: grid" contenteditable=plaintext-only></span> |