wpt / css / css-align / blocks / justify-self-vlr-ltr-vlr.html

Status: FAIL | Duration: 2ms | Subtests: 6/16 | Open test on wpt.live | wpt.fyi

Data from commit:
708eb61 WPT runner: support mismatch reftests and multiple rel=match links (#665) (2026-08-09)

SubtestStatusMessage
.item 1PASS
.item 2FAILassert_equals: data-offset-y expected 10 got 0
.item 3FAILassert_equals: data-offset-y expected 20 got 0
.item 4PASS
.item 5FAILassert_equals: data-offset-y expected 20 got 0
.item 6PASS
.item 7FAILassert_equals: data-offset-y expected 20 got 0
.item 8FAILassert_equals: data-expected-height expected 40 got 20
.item 9PASS
.item 10FAILassert_equals: data-offset-y expected 10 got 0
.item 11FAILassert_equals: data-offset-y expected 20 got 0
.item 12FAILassert_equals: data-offset-y expected 20 got 0
.item 13PASS
.item 14PASS
.item 15FAILassert_equals: data-offset-y expected 20 got 0
.item 16FAILassert_equals: data-expected-height expected 40 got 20

/css/css-align/blocks/justify-self-vlr-ltr-vlr.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-align-3/#justify-abspos">
<style>
body {
  margin: 0;
}

.container {
  writing-mode: vertical-lr;
  direction: ltr;
  display: inline-block;
  position: relative;
  margin: 20px;
  border: solid 4px;
  width: 40px;
  height: 40px;
}

.item {
  writing-mode: vertical-lr;
  direction: ltr;
  background: green;
}

.item::before {
  width: 20px;
  height: 20px;
  content: '';
  display: block;
}

.rtl {
  direction: rtl;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>

<body onload="checkLayout('.item')">

<div class="container">
  <div class="item" style="justify-self: start;" data-expected-height="20" data-offset-y="0"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: center;" data-expected-height="20" data-offset-y="10"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: end;" data-expected-height="20" data-offset-y="20"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: self-start;" data-expected-height="20" data-offset-y="0"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: self-end;" data-expected-height="20" data-offset-y="20"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: left;" data-expected-height="20" data-offset-y="0"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: right;" data-expected-height="20" data-offset-y="20"></div>
</div>

<div class="container">
  <div class="item" style="justify-self: stretch;" data-expected-height="40" data-offset-y="0"></div>
</div>

<!-- RTL -->
<br>

<div class="container">
  <div class="item rtl" style="justify-self: start;" data-expected-height="20" data-offset-y="0"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: center;" data-expected-height="20" data-offset-y="10"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: end;" data-expected-height="20" data-offset-y="20"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: self-start;" data-expected-height="20" data-offset-y="20"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: self-end;" data-expected-height="20" data-offset-y="0"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: left;" data-expected-height="20" data-offset-y="0"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: right;" data-expected-height="20" data-offset-y="20"></div>
</div>

<div class="container">
  <div class="item rtl" style="justify-self: stretch;" data-expected-height="40" data-offset-y="0"></div>
</div>