File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
MotionMark/tests/dev/stories/resources Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ class TreeMapLayout {
380380 }
381381}
382382
383- class FractalBoxesController {
383+ class StoriesController {
384384 constructor ( stage )
385385 {
386386 this . stage = stage ;
@@ -444,7 +444,7 @@ class FractalBoxesController {
444444}
445445
446446
447- class FractalBoxesStage extends Stage {
447+ class StoriesStage extends Stage {
448448 constructor ( )
449449 {
450450 super ( ) ;
@@ -455,7 +455,7 @@ class FractalBoxesStage extends Stage {
455455 async initialize ( benchmark , options )
456456 {
457457 await super . initialize ( benchmark , options ) ;
458- this . controller = new FractalBoxesController ( this ) ;
458+ this . controller = new StoriesController ( this ) ;
459459
460460 this . images = [ ] ;
461461 await this . #loadImages( )
@@ -500,15 +500,15 @@ class FractalBoxesStage extends Stage {
500500 }
501501}
502502
503- class FractalBoxesBenchmark extends Benchmark {
503+ class StoriesBenchmark extends Benchmark {
504504 constructor ( options )
505505 {
506506 const stage = document . getElementById ( 'stage' ) ;
507- super ( new FractalBoxesStage ( stage ) , options ) ;
507+ super ( new StoriesStage ( stage ) , options ) ;
508508 }
509509}
510510
511- window . benchmarkClass = FractalBoxesBenchmark ;
511+ window . benchmarkClass = StoriesBenchmark ;
512512
513513class FakeController {
514514 constructor ( )
You can’t perform that action at this time.
0 commit comments