aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/css/css-grid/grid-items
diff options
context:
space:
mode:
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-grid/grid-items')
-rw-r--r--tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-001.html95
-rw-r--r--tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-002.html94
-rw-r--r--tests/wpt/web-platform-tests/css/css-grid/grid-items/support/grid.css6
3 files changed, 195 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-001.html b/tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-001.html
new file mode 100644
index 00000000000..cb5e8ee23b6
--- /dev/null
+++ b/tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-001.html
@@ -0,0 +1,95 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Grid Layout Test: Grid items with relative offsets</title>
+<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
+<link rel="help" href="https://drafts.csswg.org/css-grid/#grid-item-sizing">
+<meta name="assert" content="Checks that relative offests work for grid items.">
+<link rel="stylesheet" href="support/grid.css">
+<style>
+.grid {
+ position: relative;
+ grid: 90px 60px 30px / 200px 150px 100px;
+ inline-size: 600px;
+ block-size: 300px;
+}
+
+.grid > div { position: relative; }
+</style>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/check-layout-th.js"></script>
+
+<body onload="checkLayout('.grid')">
+
+<div id="log"></div>
+
+<h3>Direction LTR</h3>
+
+<div class="grid">
+ <div class="firstRowFirstColumn" style="left: 10px; top: 9px;"
+ data-offset-x="10" data-offest-y="9" data-expected-width="200" data-expected-height="90"></div>
+ <div class="secondRowSecondColumn" style="left: -15px; top: -12px;"
+ data-offset-x="185" data-offest-y="78" data-expected-width="150" data-expected-height="60"></div>
+ <div class="thirdRowThirdColumn" style="right: 30px; bottom: 21px;"
+ data-offset-x="320" data-offest-y="129" data-expected-width="100" data-expected-height="30"></div>
+</div>
+
+<h3>Direction RTL</h3>
+
+<div class="grid directionRTL">
+ <div class="firstRowFirstColumn" style="left: 10px; top: 9px;"
+ data-offset-x="410" data-offest-y="9" data-expected-width="200" data-expected-height="90"></div>
+ <div class="secondRowSecondColumn" style="left: -15px; top: -12px;"
+ data-offset-x="235" data-offest-y="78" data-expected-width="150" data-expected-height="60"></div>
+ <div class="thirdRowThirdColumn" style="right: 30px; bottom: 21px;"
+ data-offset-x="120" data-offest-y="129" data-expected-width="100" data-expected-height="30"></div>
+</div>
+
+<h2>Writing Mode vertical-lr</h2>
+
+<h3>Direction LTR</h3>
+
+<div class="grid verticalLR">
+ <div class="firstRowFirstColumn" style="left: 9px; top: 10px;"
+ data-offset-x="9" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -12px; top: -15px;"
+ data-offset-x="78" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 21px; bottom: 30px;"
+ data-offset-x="129" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
+<h3>Direction RTL</h3>
+
+<div class="grid verticalLR directionRTL">
+ <div class="firstRowFirstColumn" style="left: 9px; top: 10px;"
+ data-offset-x="9" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -12px; top: -15px;"
+ data-offset-x="78" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 21px; bottom: 30px;"
+ data-offset-x="129" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
+<h2>Writing Mode vertical-rl</h2>
+
+<h3>Direction LTR</h3>
+
+<div class="grid verticalRL">
+ <div class="firstRowFirstColumn" style="left: 9px; top: 10px;"
+ data-offset-x="219" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -12px; top: -15px;"
+ data-offset-x="138" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 21px; bottom: 30px;"
+ data-offset-x="99" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
+<h3>Direction RTL</h3>
+
+<div class="grid verticalRL directionRTL">
+ <div class="firstRowFirstColumn" style="left: 9px; top: 10px;"
+ data-offset-x="219" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -12px; top: -15px;"
+ data-offset-x="138" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 21px; bottom: 30px;"
+ data-offset-x="99" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
diff --git a/tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-002.html b/tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-002.html
new file mode 100644
index 00000000000..d92fca3ebb0
--- /dev/null
+++ b/tests/wpt/web-platform-tests/css/css-grid/grid-items/grid-items-relative-offsets-002.html
@@ -0,0 +1,94 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Grid Layout Test: Grid items with relative offsets</title>
+<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
+<link rel="help" href="https://drafts.csswg.org/css-grid/#grid-item-sizing">
+<meta name="assert" content="Checks that relative percentage offests work for grid items.">
+<link rel="stylesheet" href="support/grid.css">
+<style>
+.grid {
+ position: relative;
+ grid: 90px 60px 30px / 200px 150px 100px;
+ inline-size: 600px;
+ block-size: 300px;
+}
+
+.grid > div { position: relative; }
+</style>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/check-layout-th.js"></script>
+
+<body onload="checkLayout('.grid')">
+
+<div id="log"></div>
+
+<h3>Direction LTR</h3>
+
+<div class="grid">
+ <div class="firstRowFirstColumn" style="left: 5%; top: 10%;"
+ data-offset-x="10" data-offest-y="9" data-expected-width="200" data-expected-height="90"></div>
+ <div class="secondRowSecondColumn" style="left: -10%; top: -20%;"
+ data-offset-x="185" data-offest-y="78" data-expected-width="150" data-expected-height="60"></div>
+ <div class="thirdRowThirdColumn" style="right: 30%; bottom: 70%;"
+ data-offset-x="320" data-offest-y="129" data-expected-width="100" data-expected-height="30"></div>
+</div>
+
+<h3>Direction RTL</h3>
+
+<div class="grid directionRTL">
+ <div class="firstRowFirstColumn" style="left: 5%; top: 10%;"
+ data-offset-x="410" data-offest-y="9" data-expected-width="200" data-expected-height="90"></div>
+ <div class="secondRowSecondColumn" style="left: -10%; top: -20%;"
+ data-offset-x="235" data-offest-y="78" data-expected-width="150" data-expected-height="60"></div>
+ <div class="thirdRowThirdColumn" style="right: 30%; bottom: 70%;"
+ data-offset-x="120" data-offest-y="129" data-expected-width="100" data-expected-height="30"></div>
+</div>
+
+<h2>Writing Mode vertical-lr</h2>
+
+<h3>Direction LTR</h3>
+
+<div class="grid verticalLR">
+ <div class="firstRowFirstColumn" style="left: 10%; top: 5%;"
+ data-offset-x="9" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -20%; top: -10%;"
+ data-offset-x="78" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 70%; bottom: 30%;"
+ data-offset-x="129" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
+<h3>Direction RTL</h3>
+
+<div class="grid verticalLR directionRTL">
+ <div class="firstRowFirstColumn" style="left: 10%; top: 5%;"
+ data-offset-x="9" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -20%; top: -10%;"
+ data-offset-x="78" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 70%; bottom: 30%;"
+ data-offset-x="129" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
+<h2>Writing Mode vertical-rl</h2>
+
+<h3>Direction LTR</h3>
+
+<div class="grid verticalRL">
+ <div class="firstRowFirstColumn" style="left: 10%; top: 5%;"
+ data-offset-x="219" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -20%; top: -10%;"
+ data-offset-x="138" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 70%; bottom: 30%;"
+ data-offset-x="99" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
+
+<h3>Direction RTL</h3>
+
+<div class="grid verticalRL directionRTL">
+ <div class="firstRowFirstColumn" style="left: 10%; top: 5%;"
+ data-offset-x="219" data-offest-y="10" data-expected-width="90" data-expected-height="200"></div>
+ <div class="secondRowSecondColumn" style="left: -20%; top: -10%;"
+ data-offset-x="138" data-offest-y="75" data-expected-width="60" data-expected-height="150"></div>
+ <div class="thirdRowThirdColumn" style="right: 70%; bottom: 30%;"
+ data-offset-x="99" data-offest-y="120" data-expected-width="30" data-expected-height="100"></div>
+</div>
diff --git a/tests/wpt/web-platform-tests/css/css-grid/grid-items/support/grid.css b/tests/wpt/web-platform-tests/css/css-grid/grid-items/support/grid.css
index 602e114880a..78fdd5e975a 100644
--- a/tests/wpt/web-platform-tests/css/css-grid/grid-items/support/grid.css
+++ b/tests/wpt/web-platform-tests/css/css-grid/grid-items/support/grid.css
@@ -68,6 +68,12 @@
grid-row: 3;
}
+.thirdRowThirdColumn {
+ background-color: salmon;
+ grid-column: 3;
+ grid-row: 3;
+}
+
.firstRowThirdColumn {
background-color: magenta;
grid-column: 3;