Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/smil/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 10 kB image not shown  

Quelle  test_smilKeyTimes.xhtml   Sprache: unbekannt

 
Spracherkennung für: .xhtml vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Test for SMIL keyTimes</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank"
  href="https://bugzilla.mozilla.org/show_bug.cgi?id=557885">Mozilla Bug
  557885</a>
<p id="display"></p>
<div id="content">
<svg id="svg" xmlns="http://www.w3.org/2000/svg" width="120px" height="120px">
  <circle cx="-100" cy="20" r="15" fill="blue" id="circle"/>
</svg>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
<![CDATA[
/** Test for SMIL keyTimes **/

var gSvg = document.getElementById("svg");
SimpleTest.waitForExplicitFinish();

function main()
{
  gSvg.pauseAnimations();

  var testCases = Array();

  // Simple case
  testCases.push({
    'attr' : { 'values': '050100',
               'keyTimes': '0; .81' },
    'times': [ [ 425 ],
               [ 850 ],
               [ 975 ],
               [ 10100 ] ]
  });

  // Parsing tests
  testCases.push(parseOk('  0 ; .8;1 ')); // extra whitespace
  testCases.push(parseNotOk(';0; .81')); // leading semi-colon
  testCases.push(parseNotOk('; .81')); // leading semi-colon
  testCases.push(parseOk('0; .81;')); // trailing semi-colon
  testCases.push(parseNotOk('')); // empty string
  testCases.push(parseNotOk('  ')); // empty string
  testCases.push(parseNotOk('0; .8')); // too few values
  testCases.push(parseNotOk('0; .8; .91')); // too many values
  testCases.push(parseNotOk('01; .8')); // non-increasing
  testCases.push(parseNotOk('0; .8; .9')); // final value non-1 with
                                           // calcMode=linear
  testCases.push(parseOk('0; .8; .9', { 'calcMode': 'discrete' }));
  testCases.push(parseNotOk('0.01; .81')); // first value not 0
  testCases.push(parseNotOk('0.01; .81', { 'calcMode': 'discrete' }));
                                            // first value not 0
  testCases.push(parseNotOk('0; .81.1')); // out of range
  testCases.push(parseNotOk('-0.1; .81')); // out of range


  // 2 values
  testCases.push({
    'attr' : { 'values': '050',
               'keyTimes': '01' },
    'times': [ [ 630 ] ]
  });

  // 1 value
  testCases.push({
    'attr' : { 'values': '50',
               'keyTimes': ' 0' },
    'times': [ [ 750 ] ]
  });

  // 1 bad value
  testCases.push({
    'attr' : { 'values': '50',
               'keyTimes': '0.1' },
    'times': [ [ 0, -100 ] ]
  });

  // 1 value, calcMode=discrete
  testCases.push({
    'attr' : { 'values': '50',
               'calcMode': 'discrete',
               'keyTimes': ' 0' },
    'times': [ [ 750 ] ]
  });

  // 1 bad value, calcMode=discrete
  testCases.push({
    'attr' : { 'values': '50',
               'calcMode': 'discrete',
               'keyTimes': '0.1' },
    'times': [ [ 0, -100 ] ]
  });

  // from-to
  testCases.push({
    'attr' : { 'from': '10',
               'to': '20',
               'keyTimes': '0.01.0' },
    'times': [ [ 3.513.5 ] ]
  });

  // from-to calcMode=discrete
  testCases.push({
    'attr' : { 'from': '10',
               'to': '20',
               'calcMode': 'discrete',
               'keyTimes': '0.00.7' },
    'times': [ [ 010 ],
               [ 6.910 ],
               [ 7.020 ],
               [ 10.020 ],
               [ 11.020 ] ]
  });

  // from-to calcMode=discrete one keyTime only
  testCases.push({
    'attr' : { 'values': '20',
               'calcMode': 'discrete',
               'keyTimes': '0' },
    'times': [ [ 020 ],
               [ 6.920 ],
               [ 7.020 ],
               [ 10.020 ],
               [ 11.020 ] ]
  });

  // from-to calcMode=discrete one keyTime, mismatches no. values
  testCases.push({
    'attr' : { 'values': '1020',
               'calcMode': 'discrete',
               'keyTimes': '0' },
    'times': [ [ 0, -100 ] ]
  });

  // to
  testCases.push({
    'attr' : { 'to': '100',
               'keyTimes': '0.01.0' },
    'times': [ [ 0, -100 ],
               [ 740 ] ]
  });

  // to -- bad number of keyTimes (too many)
  testCases.push({
    'attr' : { 'to': '100',
               'keyTimes': '0.00.51.0' },
    'times': [ [ 2, -100 ] ]
  });

  // unfrozen to calcMode=discrete two keyTimes
  testCases.push({
    'attr' : { 'to': '100',
               'calcMode': 'discrete',
               'keyTimes': '0.01.0',
               'fill': 'remove' },
    'times': [ [ 0, -100 ],
               [ 7, -100 ],
               [ 10, -100 ],
               [ 12, -100 ]]
  });

  // frozen to calcMode=discrete two keyTimes
  testCases.push({
    'attr' : { 'to': '100',
               'calcMode': 'discrete',
               'keyTimes': '0.01.0' },
    'times': [ [ 0, -100 ],
               [ 7, -100 ],
               [ 10100 ],
               [ 12100 ] ]
  });

  // to calcMode=discrete -- bad number of keyTimes (one, expecting two)
  testCases.push({
    'attr' : { 'to': '100',
               'calcMode': 'discrete',
               'keyTimes': '0' },
    'times': [ [ 0, -100 ],
               [ 7, -100 ] ]
  });

  // values calcMode=discrete
  testCases.push({
    'attr' : { 'values': '0102030',
               'calcMode': 'discrete',
               'keyTimes': '0;.2;.4;.6' },
    'times': [ [ 00 ],
               [ 1.90 ],
               [ 210 ],
               [ 3.910 ],
               [ 4.020 ],
               [ 5.920 ],
               [ 6.030 ],
               [ 9.930 ],
               [ 10.030 ] ]
  });

  // The following two accumulate tests are from SMIL 3.0
  // (Note that this behaviour differs from that defined for SVG Tiny 1.2 which
  // specifically excludes the last value: "Note that in the case of discrete
  // animation, the frozen value that is used is the value of the animation just
  // before the end of the active duration.")
  // accumulate=none
  testCases.push({
    'attr' : { 'values': '01020',
               'calcMode': 'discrete',
               'keyTimes': '0;.5;1',
               'fill': 'freeze',
               'repeatCount': '2',
               'accumulate': 'none' },
    'times': [ [ 00 ],
               [ 510 ],
               [ 100 ],
               [ 1510 ],
               [ 2020 ],
               [ 2520 ] ]
  });

  // accumulate=sum
  testCases.push({
    'attr' : { 'values': '01020',
               'calcMode': 'discrete',
               'keyTimes': '0;.5;1',
               'fill': 'freeze',
               'repeatCount': '2',
               'accumulate': 'sum' },
    'times': [ [ 00 ],
               [ 510 ],
               [ 1020 ],
               [ 1530 ],
               [ 2040 ],
               [ 2540 ] ]
  });

  // If the interpolation mode is paced, the keyTimes attribute is ignored.
  testCases.push({
    'attr' : { 'values': '01020',
               'calcMode': 'paced',
               'keyTimes': '0;.2;1' },
    'times': [ [ 00 ],
               [ 24 ],
               [ 510 ] ]
  });

  // SMIL 3 has:
  //   If the simple duration is indefinite and the interpolation mode is
  //   linear or spline, any keyTimes specification will be ignored.
  // However, since keyTimes represent "a proportional offset into the simple
  // duration of the animation element" surely discrete animation too cannot use
  // keyTimes when the simple duration is indefinite. Hence SVGT 1.2 is surely
  // more correct when it has:
  //   If the simple duration is indefinite, any 'keyTimes' specification will
  //   be ignored.
  // (linear)
  testCases.push({
    'attr' : { 'values': '01020',
               'dur': 'indefinite',
               'keyTimes': '0;.2;1' },
    'times': [ [ 00 ],
               [ 50 ] ]
  });
  // (spline)
  testCases.push({
    'attr' : { 'values': '01020',
               'dur': 'indefinite',
               'calcMode': 'spline',
               'keyTimes': '0;.2;1',
               'keySplines': '0 0 1 10 0 1 1' },
    'times': [ [ 00 ],
               [ 50 ] ]
  });
  // (discrete)
  testCases.push({
    'attr' : { 'values': '01020',
               'dur': 'indefinite',
               'calcMode': 'discrete',
               'keyTimes': '0;.2;1' },
    'times': [ [ 00 ],
               [ 50 ] ]
  });

  for (var i = 0; i < testCases.length; i++) {
    gSvg.setCurrentTime(0);
    var test = testCases[i];

    // Create animation elements
    var anim = createAnim(test.attr);

    // Run samples
    for (var j = 0; j < test.times.length; j++) {
      var times = test.times[j];
      gSvg.setCurrentTime(times[0]);
      checkSample(anim, times[1], times[0], i);
    }

    anim.remove();
  }

  // fallback to discrete for non-additive animation
  var attr = { 'values': 'butt; round; square',
               'attributeName': 'stroke-linecap',
               'calcMode': 'linear',
               'keyTimes': '0;.2;1',
               'fill': 'remove' };
  var anim = createAnim(attr);
  var samples = [ [ 0, 'butt' ],
                  [ 1.9, 'butt' ],
                  [ 2.0, 'round' ],
                  [ 9.9, 'round' ],
                  [ 10, 'butt' ] // fill=remove so we'll never set it to square
                ];
  for (var i = 0; i < samples.length; i++) {
    var sample = samples[i];
    gSvg.setCurrentTime(sample[0]);
    checkLineCapSample(anim, sample[1], sample[0],
      "[non-interpolatable fallback]");
  }
  anim.remove();

  SimpleTest.finish();
}

function parseOk(str, extra)
{
  var attr = { 'values': '050100',
               'keyTimes': str };
  if (typeof(extra) == "object") {
    for (name in extra) {
      attr[name] = extra[name];
    }
  }
  return {
    'attr' : attr,
    'times': [ [ 00 ] ]
  };
}

function parseNotOk(str, extra)
{
  var result = parseOk(str, extra);
  result.times = [ [ 0, -100 ] ];
  return result;
}

function createAnim(attr)
{
  const svgns = "http://www.w3.org/2000/svg";
  var anim = document.createElementNS(svgns, 'animate');
  anim.setAttribute('attributeName','cx');
  anim.setAttribute('dur','10s');
  anim.setAttribute('begin','0s');
  anim.setAttribute('fill','freeze');
  for (name in attr) {
    anim.setAttribute(name, attr[name]);
  }
  return document.getElementById('circle').appendChild(anim);
}

function checkSample(anim, expectedValue, sampleTime, caseNum)
{
  var msg = "Test case " + caseNum +
    " (keyTimes: '" + anim.getAttribute('keyTimes') + "'" +
    " calcMode: " + anim.getAttribute('calcMode') + "), " +
    "t=" + sampleTime +
    ": Unexpected sample value:";
  is(anim.targetElement.cx.animVal.value, expectedValue, msg);
}

function checkLineCapSample(anim, expectedValue, sampleTime, caseDescr)
{
  var msg = "Test case " + caseDescr +
    " (keyTimes: '" + anim.getAttribute('keyTimes') + "'" +
    " calcMode: " + anim.getAttribute('calcMode') + "), " +
    "t=" + sampleTime +
    ": Unexpected sample value:";
  var actualValue =
    window.getComputedStyle(anim.targetElement).
    getPropertyValue('stroke-linecap');
  is(actualValue, expectedValue, msg);
}

window.addEventListener("load", main);
]]>
</script>
</pre>
</body>
</html>

[Dauer der Verarbeitung: 0.31 Sekunden, vorverarbeitet 2026-06-08]