chromium/third_party/blink/web_tests/external/wpt/css/css-conditional/container-queries/unsupported-axis.html

<!doctype html>
<title>Query against unsupported axis</title>
<link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/cq-testcommon.js"></script>
<script>
  setup(() => assert_implements_container_queries());
</script>

<style>
  #container {
    width: 200px;
    height: 100px;
    container-type: inline-size;
  }
</style>

<div id=container>
  <div id=target>
    Test
  </div>
</div>


<style>
  @container (width > 0px) {
    #target { --width:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--width'), 'true');
  }, '(width > 0px)');
</script>


<style>
  @container (height > 0px) {
    #target { --height:true; }
  }
</style>
<script>
  test(function(t) {
    // container-type:inline-size does not support queries along the block
    // axis.
    assert_equals(getComputedStyle(target).getPropertyValue('--height'), '');
  }, '(height > 0px)');
</script>


<style>
  @container ((height > 0px) or (width > 0px)) {
    #target { --height-or-width:true; }
  }
</style>
<script>
  test(function(t) {
    // (height > 0px) requires container-type:size.
    assert_equals(getComputedStyle(target).getPropertyValue('--height-or-width'), '');
  }, '((height > 0px) or (width > 0px))');
</script>


<style>
  @container ((width > 0px) or (height > 0px)) {
    #target { --width-or-height:true; }
  }
</style>
<script>
  test(function(t) {
    // (height > 0px) requires container-type:size.
    assert_equals(getComputedStyle(target).getPropertyValue('--width-or-height'), '');
  }, '((width > 0px) or (height > 0px))');
</script>

<style>
  @container ((orientation: landscape) or (width > 0px)) {
    #target { --orientation-or-width:true; }
  }
</style>
<script>
  test(function(t) {
    // (orientation: landscape) requires container-type:size.
    assert_equals(getComputedStyle(target).getPropertyValue('--orientation-or-width'), '');
  }, '((orientation: landscape) or (width > 0px))');
</script>


<style>
  @container ((width > 0px) or (orientation: landscape)) {
    #target { --width-or-orientation:true; }
  }
</style>
<script>
  test(function(t) {
    // (orientation: landscape) requires container-type:size.
    assert_equals(getComputedStyle(target).getPropertyValue('--width-or-orientation'), '');
  }, '((width > 0px) or (orientation: landscape))');
</script>


<style>
  @container ((height > 0px) or (orientation: landscape)) {
    #target { --height-or-orientation:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--height-or-orientation'), '');
  }, '((height > 0px) or (orientation: landscape))');
</script>


<style>
  @container ((height > 0px) or (orientation: landscape)) {
    #target { --height-or-orientation2:true; }
  }
</style>
<script>
  test(function(t) {
    // Adding full size containment via the 'contain' property does not
    // make 'height' queryable. (Limited by container-type:inline-size).
    t.add_cleanup(() => { target.style = ''; });
    target.style.contain = 'size';
    assert_equals(getComputedStyle(target).getPropertyValue('--height-or-orientation2'), '');
  }, '((height > 0px) or (orientation: landscape)), with contain:size');
</script>


<style>
  @container (inline-size > 0px) {
    #target { --inline-size:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--inline-size'), 'true');
  }, '(inline-size > 0px)');
</script>


<style>
  @container (block-size > 0px) {
    #target { --block-size:true; }
  }
</style>
<script>
  test(function(t) {
    // container-type:inline-size does not support queries along the block
    // axis.
    assert_equals(getComputedStyle(target).getPropertyValue('--block-size'), '');
  }, '(block-size > 0px)');
</script>


<style>
  @container (block-size > 0px) {
    #target { --block-size2:true; }
  }
</style>
<script>
  test(function(t) {
    // Changing the writing-mode does not affect the evaluation of block-size.
    t.add_cleanup(() => { target.style = ''; });
    target.style.writingMode = 'vertical-rl';
    assert_equals(getComputedStyle(target).getPropertyValue('--block-size2'), '');
  }, '(block-size > 0px), with writing-mode:vertical-rl');
</script>


<style>
  @container not (width < 0px) {
    #target { --not-width:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--not-width'), 'true');
  }, 'not (width < 0px)');
</script>


<style>
  @container not (height < 0px) {
    #target { --not-height:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--not-height'), '');
  }, 'not (height < 0px)');
</script>


<style>
  @container not (inline-size < 0px) {
    #target { --not-inline-size:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--not-inline-size'), 'true');
  }, 'not (inline-size < 0px)');
</script>


<style>
  @container not (block-size < 0px) {
    #target { --not-block-size:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--not-block-size'), '');
  }, 'not (block-size < 0px)');
</script>

<style>
  @container not (orientation) {
    #target { --not-orientation:true; }
  }
</style>
<script>
  test(function(t) {
    assert_equals(getComputedStyle(target).getPropertyValue('--not-orientation'), '');
  }, 'not (orientation)');
</script>