| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 
 | <!DOCTYPE html>
<meta charset="utf-8">
<title>ScrollTimeline constructor</title>
  <link rel="help" href="https://wicg.github.io/scroll-animations/#scrolltimeline-interface">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
.scroller {
  height: 100px;
  width: 100px;
  overflow: scroll;
}
.content {
  height: 500px;
  width: 500px;
}
</style>
<div class="scroller">
  <div class="content"></div>
</div>
<script>
'use strict';
function formatOffset(v) {
  if (typeof(v) == 'object')
    return `${v.constructor.name}(${v.toString()})`;
  return `'${v.toString()}'`;
}
function assert_offsets_equal(a, b) {
  assert_equals(formatOffset(a), formatOffset(b));
}
// source
test(t => {
  const scroller = document.querySelector('.scroller');
  assert_equals(
      new ScrollTimeline({source: scroller}).source, scroller);
}, 'A ScrollTimeline can be created with a source');
test(t => {
  const div = document.createElement('div');
  assert_equals(new ScrollTimeline({source: div}).source, div);
}, 'A ScrollTimeline can be created with a non-scrolling source');
test(t => {
  assert_equals(new ScrollTimeline({source: null}).source, null);
}, 'A ScrollTimeline created with a null source should have no source');
test(t => {
  assert_equals(new ScrollTimeline().source, document.scrollingElement);
}, 'A ScrollTimeline created without a source should use the ' +
   'document.scrollingElement');
// axis
test(t => {
  assert_equals(new ScrollTimeline().axis, 'block');
}, 'A ScrollTimeline created with the default axis should default to ' +
   `'block'`);
const gValidAxisValues = [
  'block',
  'inline',
  'x',
  'y',
];
for (let axis of gValidAxisValues) {
  test(function() {
    const scrollTimeline =
        new ScrollTimeline({axis: axis});
    assert_equals(scrollTimeline.axis, axis);
  }, `'${axis}' is a valid axis value`);
}
test(t => {
  let constructorFunc = function() {
    new ScrollTimeline({axis: 'nonsense'})
  };
  assert_throws_js(TypeError, constructorFunc);
  // 'auto' for axis was previously in the spec, but was removed. Make
  // sure that implementations do not support it.
  constructorFunc = function() {
    new ScrollTimeline({axis: 'auto'})
  };
  assert_throws_js(TypeError, constructorFunc);
}, 'Creating a ScrollTimeline with an invalid axis value should throw');
</script>
 |