chromium/third_party/blink/web_tests/external/wpt/shadow-dom/focus-navigation/reading-flow/tentative/grid-order-with-position-fixed.html

<!DOCTYPE html>
<meta charset="utf-8">
<meta name="timeout" content="long">
<title>CSS Display: reading-flow with value grid-order and position: fixed elements</title>
<link rel="help" href="https://drafts.csswg.org/css-display-4/#reading-flow">
<link rel="author" title="Di Zhang" href="mailto:[email protected]">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src='../../resources/shadow-dom.js'></script>
<script src="../../resources/focus-utils.js"></script>

<style>
.wrapper {
  display: grid;
  reading-flow: grid-order;
}
</style>

<div class="test-case" data-expect="c,b,a1,a2"
     data-description="Items in position:fixed container are visited at the end of the focus sequence.">
  <div class="wrapper">
    <div style="order: 2; position:fixed; left:100px">
      <button id="a1">A1</button>
      <button id="a2">A2</button>
    </div>
    <div style="order:3"><button id="b">B</button></div>
    <div style="order:1"><button id="c">C</button></div>
  </div>
</div>

<div class="test-case" data-expect="order1,order2,order4,fixed1,fixed2"
     data-description="Items that have position:fixed are visited at the end of the focus sequence, in DOM order.">
  <div class="wrapper" style="position: fixed; top: 100px">
    <button id="fixed1" style="order: 5; position: fixed; left: 100px; top: 130px">Fixed 1</button>
    <button id="order2" style="order: 2">Order 2</button>
    <button id="order1" style="order: 1">Order 1</button>
    <button id="order4" style="order: 4">Order 4</button>
    <button id="fixed2" style="order: 3; position: fixed; left: 100px">Fixed 2</button>
  </div>
</div>

<script>
runFocusTestCases();
</script>