Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  test_transform_limits.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/dom/animation/test/mozilla/test_transform_limits.html


<!doctype html>
<meta charset=utf-8>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../testcommon.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';

// We clamp +infinity or -inifinity value in floating point to
// maximum floating point value or -maximum floating point value.
const MAX_FLOAT = 3.40282e+38;

test(function(t) {
  var div = addDiv(t);
  div.style = "width: 1px; height: 1px;";
  var anim = div.animate([ { transform: 'scale(1)' },
                           { transform: 'scale(3.5e+38)'},
                           { transform: 'scale(3)' } ], 100 * MS_PER_SEC);

  anim.pause();
  anim.currentTime = 50 * MS_PER_SEC;
  assert_equals(getComputedStyle(div).transform,
                'matrix(' + MAX_FLOAT + ', 0, 0, ' + MAX_FLOAT + ', 0, 0)');
}, 'Test that the parameter of transform scale is clamped' );

test(function(t) {
  var div = addDiv(t);
  div.style = "width: 1px; height: 1px;";
  var anim = div.animate([ { transform: 'translate(1px)' },
                           { transform: 'translate(3.5e+38px)'},
                           { transform: 'translate(3px)' } ], 100 * MS_PER_SEC);

  anim.pause();
  anim.currentTime = 50 * MS_PER_SEC;
  assert_equals(getComputedStyle(div).transform,
                'matrix(1, 0, 0, 1, ' + MAX_FLOAT + ', 0)');
}, 'Test that the parameter of transform translate is clamped' );

test(function(t) {
  var div = addDiv(t);
  div.style = "width: 1px; height: 1px;";
  var anim = div.animate([ { transform: 'matrix(0.5, 0, 0, 0.5, 0, 0)' },
                           { transform: 'matrix(2, 0, 0, 2, 3.5e+38, 0)'},
                           { transform: 'matrix(0, 2, 0, -2, 0, 0)' } ],
                         100 * MS_PER_SEC);

  anim.pause();
  anim.currentTime = 50 * MS_PER_SEC;
  assert_equals(getComputedStyle(div).transform,
                'matrix(2, 0, 0, 2, ' + MAX_FLOAT + ', 0)');
}, 'Test that the parameter of transform matrix is clamped' );

</script>
</body>

Messung V0.5 in Prozent
C=88 H=96 G=91

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002