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 {
380
380
}
381
381
}
382
382
383
- class FractalBoxesController {
383
+ class StoriesController {
384
384
constructor ( stage )
385
385
{
386
386
this . stage = stage ;
@@ -444,7 +444,7 @@ class FractalBoxesController {
444
444
}
445
445
446
446
447
- class FractalBoxesStage extends Stage {
447
+ class StoriesStage extends Stage {
448
448
constructor ( )
449
449
{
450
450
super ( ) ;
@@ -455,7 +455,7 @@ class FractalBoxesStage extends Stage {
455
455
async initialize ( benchmark , options )
456
456
{
457
457
await super . initialize ( benchmark , options ) ;
458
- this . controller = new FractalBoxesController ( this ) ;
458
+ this . controller = new StoriesController ( this ) ;
459
459
460
460
this . images = [ ] ;
461
461
await this . #loadImages( )
@@ -500,15 +500,15 @@ class FractalBoxesStage extends Stage {
500
500
}
501
501
}
502
502
503
- class FractalBoxesBenchmark extends Benchmark {
503
+ class StoriesBenchmark extends Benchmark {
504
504
constructor ( options )
505
505
{
506
506
const stage = document . getElementById ( 'stage' ) ;
507
- super ( new FractalBoxesStage ( stage ) , options ) ;
507
+ super ( new StoriesStage ( stage ) , options ) ;
508
508
}
509
509
}
510
510
511
- window . benchmarkClass = FractalBoxesBenchmark ;
511
+ window . benchmarkClass = StoriesBenchmark ;
512
512
513
513
class FakeController {
514
514
constructor ( )
You can’t perform that action at this time.
0 commit comments